forked from bloominstituteoftechnology/Preprocessing-I
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (92 loc) · 2.67 KB
/
Copy pathindex.html
File metadata and controls
105 lines (92 loc) · 2.67 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Digital Resume</title>
<link href="https://fonts.googleapis.com/css?family=Lexend+Deca|Open+Sans:400,600,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="main-container">
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="https://ofega.github.io/portfolio-website/">Portfolio</a></li>
</ul>
</nav>
<header>
<div class="image-container">
<img src="./images/me.jpg" alt="A picture of me">
</div>
<div class="resume-intro">
<h1>Chioma Nkem-Eze - Web Dev</h1>
<p>Technology is my jam!</p>
</div>
<div class="resume-summary">
<p>Occasionally I have to work on side projects, if you're interested, let me know by signing up on this website</p>
<button>Lets Team Up</button>
</div>
</header>
<main id="about">
<div class="col-2-grid">
<section>
<h2>Listen Up...</h2>
<p class="main-commary">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source.</p>
</section>
<section>
<h2>Stuff I'm Good At</h2>
<ul class="hobbies-list">
<li>Disc Golf</li>
<li>Coding up UI</li>
<li>Playing lots of video games</li>
<li>Using bootstrap grid</li>
<li>Taking long naps</li>
</ul>
</section>
</div>
<section class="table-container">
<h2>Work History</h2>
<div>
<table>
<thead>
<tr>
<th>Yrs</th>
<th>Company</th>
<th>Title</th>
<th>Tech Used</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Apple</td>
<td>Software Engineer</td>
<td>Swift</td>
</tr>
<tr>
<td>2</td>
<td>Microsoft</td>
<td>Computer Scientist</td>
<td>.NET</td>
</tr>
<tr>
<td>3</td>
<td>Amazon</td>
<td>Dev Ops</td>
<td>AWS</td>
</tr>
</tbody>
</table>
</div>
</section>
</main>
<footer>
<p>Copyright Awesomeness 2018</p>
</footer>
</div>
</body>
</html>