-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:200,400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./src/css/style.css">
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</head>
<body>
<section id="navbar">
<ul>
<li><a href="#work" class="nav-link">Projects</a></li>
<li><a id="profile-link" class="nav-link" href="https://github.com/xstrengthofonex" target="_blank">Github</a></li>
</ul>
</section>
<section class="banner cf">
<div id="welcome-section" class="wrapper">
<div class="brand-image">
<img class="image" src="./src/img/profile_pic.jpg" alt="my profile image">
<hr align="left">
<p class="brand">Vincent Marcus White</p>
</div>
<div id="job-title">
<h1>
Full-Stack.<br>
Web.<br>
Developer.
</h1>
</div>
</div>
</section>
<section id="work">
<div class="section-title">
My Projects
</div>
<div id="projects" class="wrapper">
<div class="project-tile row cf">
<a href="https://xstrengthofonex.github.io/random-quote-machine/">
<div class="card card-full card-1">
<div class="card-inner pink">
<p>Random Quote Machine</p>
<h2>Get inspired. A random quote generator using the Andruxnet API</h2>
</div>
</div>
</a>
</div>
<div class="project-tile row cf">
<a href="https://xstrengthofonex.github.io/local-weather/">
<div class="card card-half tall left card-2">
<div class="card-inner green">
<p>Local Weather</p>
<h2>Look out the window</h2>
</div>
</div>
</a>
<a href="https://xstrengthofonex.github.io/wikipedia-viewer/">
<div class="card card-half tall right card-3">
<div class="card-inner purple">
<p>Wikipedia Viewer</p>
<h2>Information is power</h2>
</div>
</div>
</a>
</div>
</section>
</body>
</html>