-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (105 loc) · 5.11 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!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">
<meta name="description" content="I'm a free, lo-fi website template. Replace my placeholders with your words.">
<meta name="author" content="Nneka Nnagbo">
<title>A name goes name</title>
<link href="/images/favicon_sm.png" rel="icon" sizes="16x16" type="image/png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="top-page">
<div class="container"> <!-- new div --> <!-- anchor tags are always inline -->
<h1 class="h1-style"><a href="#">A name goes here</a></h1>
<nav class="site-nav">
<div>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#experience">Experience</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</div>
</nav>
<p class="intro">Some sort of intro/headline goes here</p>
<!-- <div><img class="" src="" alt=""></div> -->
</div>
</header>
<main>
<section id="about-section">
<div class="container" id="about">
<h2>About</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</section>
<section id="skills-section">
<div class="container" id="skills">
<h2>Skills</h2>
<ul class="no-indent li-style" id="skills-col">
<li>Some skill <meter min="0" max="10" value="9"></meter> 90%</li>
<li>Some skill <meter min="0" max="10" value="7" low="2.5" high="7.5" optimum="8"></meter> 70%</li> <!-- suboptimum value -->
<li>Some skill <meter min="0" max="10" value="9"></meter> 90%</li>
<li>Some skill <meter min="0" max="10" value="8"></meter> 80%</li>
<li>Some skill <meter min="0" max="10" value="9"></meter> 90%</li>
<li>Some skill <meter min="0" max="10" value="8"></meter> 80%</li>
<li>Some skill <meter min="0" max="10" value="9" id></meter> 90%</li>
<li>Some skill <meter min="0" max="10" value="2.4" low="2.5" high="7.5" optimum="80"></meter> 24%</li> <!-- even less good value -->
<li>Some skill <meter min="0" max="10" value="4.5" low="2.5" high="7.5" optimum="80"></meter> 45%</li> <!-- even less good value -->
</ul>
</div>
</section>
<section id="experience-section">
<div class="container" id="experience">
<div class="work_experience">
<h2>Experience</h2>
<h3>1. A job title goes here</h3>
<h4>Name of organization</h4>
<caption>Year-present</caption>
<p>Some job description goes here.</p>
</div>
<div class="work_experience">
<h3>2. A job title goes here</h3>
<h4>Name of organization</h4>
<caption>Year-Year</caption>
<p>Some job description goes here.</p>
</div>
<div class="work_experience">
<h3>3. A job title goes here</h3>
<h4>Name of organization</h4>
<caption>Year-Year</caption>
<p>Some job description goes here.</p>
<span><a href="#" target="_blank">Maybe link to a project here</a> <span class="badge badge-pill badge-outline">a label</span></span>
</div>
</div>
</section>
<section id="projects-section">
<div class="container" id="projects">
<h2>Projects</h2>
<ul>
<li><a href="#" target="_blank">Project name</a> <span class="badge badge-pill badge-primary">maybe add</span></li>
<li><a href="#" target="_blank">Project name</a> <span class="badge badge-pill badge-primary">another label</span></li>
<li><a href="#" target="_blank">Project name</a>
<li><a href="#" target="_blank">Project name</a>
</ul>
</div>
</section>
</main>
<footer id="footer-section">
<div class="container" id="contact">
<h2>Get in touch</h2>
<a href="mailto:youremail@email.com">Email</a>
<a href="https://github.com/nnekannagbo/a-name-goes-here">Github</a>
<a href="#" target="_blank">Link 3</a>
<a href="#" target="_blank">Link 4</a>
<div id="footer-caption">
<caption>Coded with <span aria-label="a green heart emoji, meaning love" role="img">💚</span> by Nneka Nnagbo © 2023. Hosted with <a href="https://github.com/">Github</a></caption>
</div>
</div>
</footer>
</body>
</html>