-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (65 loc) · 2.33 KB
/
index.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="stylesheet" href="./css/style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header class="header">
<a href="#home" class="logo">
Ayoub <span>Laroussi</span>
</a>
<i class="bx bx-menu" id="menu-icon"></i>
<nav class="navbar">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#project">Project</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="home" id="home">
<div class="home-content">
<h1>Hey, je suis <span>Ayoub</span></h1>
<h3 class="text-animation">
Je <span></span>
</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Eos iusto, aut neque exercitationem velit beatae rerum molestiae aspernatur itaque, voluptatum provident et nam! Aperiam officia non sint reprehenderit accusantium repellat!
</p>
<div class="social-icon">
<a href="#">
<i class="bx bxl-github"></i>
</a>
<a href="#">
<i class="bx bxl-linkedin-square"></i>
</a>
<a href="#">
<i class="bx bxl-instagram-alt"></i>
</a>
<a href="#">
<i class="bx bxl-twitter"></i>
</a>
</div>
<div class="btn-group">
<a href="#" class="btn">Hire</a>
<a href="#contact" class="btn"> Contact</a>
</div>
</div>
<div class="home-video">
<img src="img/react-1024x912.webp" alt="">
</div>
</section>
<section class="about" id="about">
<div class="about-img">
<h2 class="heading">
À Propos de <span>Moi</span>
</h2>
</div>
</section>
<script src="script.js"></script>
</body>
</html>