-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (63 loc) · 2.65 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
<!DOCTYPE html>
<!-- reference: https://github.com/KiaanCastillo/Pure-CSS-Multilayer-Parallax -->
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-144357721-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-144357721-2');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:100,300,400,600" rel="stylesheet" type="text/css">
<link href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet" type="text/css">
<link type="text/css" rel="stylesheet" href="style.css">
<title>Dev_song Homepage</title>
</head>
<body>
<div class="header_wrapper">
<header>
<h2 class="page_title">Homepage</h2>
<nav>
<ul class="nav-bar">
<li><a href="#">Home</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
</div>
<div class="main_wrapper">
<main>
<section class="site_owner">
<h3 class="owner_name">dev_</h3>
<h3 class="owner_name">song</h3>
<p class="owner_intro">An Apprentice Programmer</p>
</section>
<section class="page_description">
<pre class="example_code">
* {
margin: 0;
padding: 0;
}
</pre>
<div class="project_list">
<div class="project">
<p class="project_number">Project #1</p>
<p class="project_name"><a href="digital_rain/digital_rain.html" target="_blank">Matrix-style Digital Rain</a></p>
</div>
<div class="project">
<p class="project_number">Project #2</p>
<p class="project_name"><a href="hymn_to_vsc/hymn.html" target="_blank">Hymn to Visual Studio Code</a></p>
</div>
</div>
</section>
</main>
</div>
<!-- <script src="app.js"></script> -->
</body>
</html>