-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav.html
91 lines (88 loc) · 2.64 KB
/
nav.html
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<body>
<nav>
<ul>
<li><a href="#Home">Home</a></li>
<li><a href="#Services">Services</a></li>
<li><a href="#Skills">Skills</a></li>
<li><a href="#Contact">Contact</a></li>
</ul>
</nav>
<section id="Home">
<div class="home-left">
<ul class="items">
<li class="item">
<a href="">
<i class="fa-brands fa-facebook"></i>
</a>
</li>
<li class="item">
<a href="https://www.instagram.com/_mehdi_0624/">
<i class="fa-brands fa-instagram"></i>
</a>
</li>
<li class="item">
<a href="">
<i class="fa-brands fa-twitter"></i>
</a>
</li>
</ul>
<h2>I am Si Saber Rania</h2>
</div>
<div class="home-right">
<div class="img-container">
<img src="men-suit-png-9470.png" />
<div class="overlay"></div>
</div>
</div>
</section>
<section class="services" id="Services">
<div class="grid">
<h1>SERVICES</h1>
<h2>My services</h2>
<div class="spaceer"><div class="spacer"></div></div>
<div class="jsp">
<div class="div-services">
<i class="fa-brands fa-github"></i>
<h4>Web Development</h4>
</div>
<div class="div-services">
<i class="fa-solid fa-cube"></i>
<h4>Web Design</h4>
</div>
<div class="div-services">
<i class="fa-solid fa-video"></i>
<h4>Video Editing</h4>
</div>
<div class="div-services">
<i class="fa-solid fa-camera"></i>
<h4>Photography</h4>
</div>
<div class="div-services">
<i class="fa-brands fa-apple"></i>
<h4>App Developing</h4>
</div>
<div class="div-services">
<i class="fa-solid fa-y"></i>
<h4>SEO Expart</h4>
</div>
</div>
</div>
</section>
</body>
</html>