-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
69 lines (69 loc) · 2.55 KB
/
Copy pathservices.html
File metadata and controls
69 lines (69 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Portfolio Website</title>
<link rel="stylesheet" href="styled.css">
</head>
<body>
<header class="header">
<a href="#" class="logo">WALIDI</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="services.html" class="active">Services</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section class="services">
<div class="service-box">
<h3>Design Grafis</h3>
<div class="logos">
<img src="icon\photoshop.png" alt="Photoshop">
<img src="icon\canva.png" alt="Canva">
</div>
</div>
<div class="service-box">
<h3>Video Editor</h3>
<div class="logos">
<img src="icon\capcut.png" alt="CapCut">
<img src="icon\premier.png" alt="premier pro">
</div>
</div>
<div class="service-box">
<h3>Animation</h3>
<div class="logos">
<img src="icon\metal canvas.png" alt="Mental Canvas">
<img src="icon\ae.png" alt="After Effects">
<img src="icon\am.png" alt="Alight Motion">
</div>
</div>
<div class="service-box">
<h3>Copywriting</h3>
<div class="logos">
<img src="icon\word.png" alt="Word">
<img src="icon\excel.png" alt="Excel">
<img src="icon\ppt.png" alt="PowerPoint">
</div>
</div>
<div class="service-box">
<h3>Online Marketing</h3>
<div class="logos">
<img src="icon\ig.png" alt="Instagram">
<img src="icon\fb.png" alt="Facebook">
<img src="icon\tt.png" alt="TikTok">
</div>
</div>
</section>
<footer class="footer">
<div class="home-sci">
<a href="https://www.facebook.com/walidhiii/"><img src="fb.png" alt="Facebook"></a>
<a href="https://www.instagram.com/_walidi/"><img src="ig.png" alt="Instagram"></a>
<a href="http://wa.me/+6285156601316"><img src="wa.png" alt="WhatsApp"></a>
</div>
</footer>
</body>
</html>