-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (38 loc) · 1.47 KB
/
Copy pathindex.html
File metadata and controls
86 lines (38 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LeanOnMonster | Home</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav class="nav">
<a class='nav-link active' href='/'>Home</a>
<a class='nav-link' href='/projects'>Projects</a>
<a class='nav-link' href='/links'>Links</a>
<a class='nav-link' href='/plugins'>Plugins</a>
</nav>
</header>
<main class="container home-content">
<section class="profile-wrapper fade-in">
<img src="pfp.png" alt="Profile Picture" class="profile-pic" />
<div class="profile-info">
<h1 class="name">LeanOnMonster</h1>
<div class="timezone">GMT</div>
<a href="https://github.com/OneGuyOnLean" target="_blank" class="github-link">github.com/OneGuyOnLean</a>
</div>
<div class="status-box">Learning Java<br />Available for Comms</div>
</section>
<section class="banner-wrapper fade-in">
<img src="banner.png" alt="Banner Image" class="banner" />
</section>
<section class="about fade-in">
<h2>About Me</h2>
<p>Hi! I'm Lean, An IT Student That Enjoys Working And Solving problems. When I'm Not coding, I enjoy playing the little block game Minecraft.</p>
</section>
</main>
<script src="script.js"></script>
</body>
</html>