-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (49 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="./resources/CSS/style.css">
<link href="https://fonts.googleapis.com/css?family=Nunito:300|PT+Sans" rel="stylesheet">
</head>
<body>
<header>
<nav>
<h1>Clement Jacquet</h1>
<ul id="nav-bar">
<li><a href="#">About me</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Skills</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="banner-section">
<img src="./resources/images/banner.jpg" alt="Picture showing lines of code">
</section>
<section class = "main-content">
<div id="about-me">
<p>Welcome to my portfolio! I’m Clément,
a beginner web developer exploring the world of coding and design.
This space showcases my current projects as I learn and improve my skills
in front-end and back-end development.
<br>
I’m passionate about building functional and user-friendly websites,
and I’m always eager to take on new challenges.
Feel free to explore my work and follow my journey as I grow as a developer!
</p>
</div>
<div id="projects">
</div>
<div id="skills">
</div>
<div id="contact">
</div>
</section>
</main>
<footer>
</footer>
</body>
</html>