-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
</head>
<body>
<nav class="navbar">
<a href="index.html"> <i class="fas fa-home"></i> <span>Home</span> </a>
<a href="About.html"> <i class="fas fa-user"></i> <span>About</span> </a>
<a href="Portfolio.html">
<i class="fas fa-briefcase"></i> <span>Portfolio</span>
</a>
<a href="Contact.html">
<i class="fas fa-address-book"></i> <span>Contact</span>
</a>
</nav>
<section class="home">
<div class="image">
<img src="./images/oumy.jpg" />
</div>
<div class="content">
<h3>bonjour, je suis Oumaima Lamrabat</h3>
<span> développeuse</span>
<p>en formation à Ada Tech School, Nantes.</p>
<a href="./About.html" class="btn"
>About Me<i class="fas fa-user"></i
></a>
</div>
</section>
</body>
</html>