-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (47 loc) · 2.4 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Codic's Portfolio</title>
<link rel="stylesheet" href="style.css">
<!-- <meta property="og:title" content="The Drago's Den" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.jdragon16.live/thedragosden" />
<meta property="og:image" content="https://www.jdragon16.live/thedragosden/logo.png" />
<link rel="icon" href="https://www.jdragon16.live/thedragosden/logo.png"/>
<meta property="og:description" content="Are you looking for a friendly and supporting programming server? Why not join the drago's den? We are a friendly and supportive programming community who will help you with anything programming related. Here you can meet new friends with the same programming mindset." /> -->
</head>
<body>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="topnav" id="myTopnav">
<a href="index.html" class="active">Home</a>
<a href="blog.html">Blog</a>
<a href="javascript:void(0);" class="icon" onclick="respMenu()">
<i class="fa fa-bars"></i>
</a>
</div>
<script>
function respMenu() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<div class="container">
<div style="text-align: left">
<h1>Hey there, I'm codic.</h1>
<p><i>Full stack dev, [a horrible] Linux sysadmin, UI designer, artist, and tinkerer.</i></p>
<p>Hello and welcome to my website! I'm codic, also known as codic12. Do you want to see some of my <a href="projects.html" class="link">projects</a>? Or maybe you'd rather <a href="about.html" class="link">learn about me and what I do, and the tools I use</a>? I also have a <a href="blog.html" class="link">blog</a>.</p>
</div>
<div class="left">
<img src="logo.png" style="width: 359px; border-radius: 110px">
</div>
</div>
<!-- <footer style="color: white; position: fixed; left: 0; bottom: 0; width: 100%">
© Codic Incorporated 2020. Some or all rights reserved.
</footer> -->
</body>
</html>