-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (46 loc) · 1.92 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
<!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="styles.css">
<script src="https://kit.fontawesome.com/fff6b11c7b.js" crossorigin="anonymous"></script>
<title>David Assigbi's portfolio</title>
</head>
<body>
<nav id="navbar">
<!-- user story 6 -->
<div>MDA</div>
<div id="links">
<a class="nav-link" href="#welcome-section">About</a> <!-- user story 7 -->
<a class="nav-link" href="#projects">Work</a> <!-- user story 7 -->
<a class="nav-link" href="#contact">Contact</a> <!-- user story 7 -->
</div>
</nav>
<div class="content-wrap"></div><!-- Account for the top fixed header height -->
<section id="welcome-section">
<!-- user story 1 -->
<h1>Hi, I am David Assigbi</h1> <!-- user story 2 -->
<span>a CS Student, sysadmin, web developper, 3D enthusiast and an aspiring network data analyst</span>
</section>
<section id="projects">
<!-- user story 3 -->
<h2>These are some of my projects</h2>
<div id="project-cards"></div><!-- JS rendered -->
<a id="show-all" class="show-all" target="_blank" href="https://codepen.io/davidassigbi/pens/public">Show all</a>
</section>
<footer id="contact">
<p id="work-invitation">Let's work together...</p>
<span id="coffee-statement">How do you take your coffee ?</span>
<div id="social-links"></div><!-- JS rendered -->
</footer>
<div class="red-band"></div>
<div id="disclaimer">
<p>**Proudly made by Me :)</p>
<p>© Being taught @ freeCodeCamp</p>
</div>
<script src="index.js"></script>
<!--script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>-->
</body>
</html>