-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./app.css" rel="stylesheet">
<title>F.Mentel PortFolio</title>
</head>
<body>
<nav id="navbar">
<ul>
<li><a href="#welcome-section">About</a></li>
<li><a href="#projects">Work</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<main>
<section id="welcome-section">
<h1>Hey I am Fred</h1>
<p>A web developer</p>
</section>
<section id="projects">
<h1>These are some of my projects</h1>
<div class="project-tile"><a href="https://codepen.io/freeCodeCamp/full/wgGVVX">project-tile</a></div>
</a>
</section>
<section id="contact">
<header>
<h1>Let's work together...</h1>
<p>How do you take your coffee?</p>
</header>
<ul>
<li><a href="https://github.com/fred7896" target="_blank">Github</a></li>
<li><a href="https://www.freecodecamp.org/fred7896" target="_blank">FreeCodeCamp
Profile</a></li>
</ul>
</section>
</main>
</body>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</html>