-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.3 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
<title>Gentleman's Profile</title>
</head>
<body>
<div class="parent-nav">
<ul class="navbar">
<li class="navbar li"><a class="navbar a" href="projects.html">Projects</a></li>
<li class="navbar li"><a class="navbar a" style="cursor:pointer">Home</a></li>
</ul>
</div>
<header>
<img src="images/me.jpg" alt="Profile picture" class="profile-image">
<h1 class="Title-Class">Hello, I'm Gentleman.</h1>
</header>
<main class="flex">
<div class="card background">
<h2>Current Background</h2>
<p>I like to play anarchy. </p>
<p>I also like to code.</p>
</div>
<div class="card">
<h2>Goals</h2>
<p>I'd like to Learn more about</p>
<ul class="skills">
<li>Java</li>
<li>Kotlin</li>
<li>JavaScript</li>
<li>Python</li>
</ul>
<p>Maybe some day I'll make a custom-base client.</p>
</div>
</main>
</body>
<footer>
<a href="https://github.com/GentlemanMC" class="github social">Github</a>
</footer>
</html>