Skip to content

Commit 3388c76

Browse files
authored
Add files via upload
1 parent 2bb54cd commit 3388c76

File tree

2 files changed

+49
-17
lines changed

2 files changed

+49
-17
lines changed

assets

Whitespace-only changes.

index.html

Lines changed: 49 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,49 @@
1-
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7-
<title>My Website</title>
8-
<link rel="stylesheet" href="./style.css">
9-
<link rel="icon" href="./favicon.ico" type="image/x-icon">
10-
</head>
11-
<body>
12-
<main>
13-
<h1>Welcome to My Website</h1>
14-
</main>
15-
<script src="index.js"></script>
16-
</body>
17-
</html>
1+
<!DOCTYPE HTML>
2+
<!--
3+
Aerial by HTML5 UP
4+
html5up.net | @ajlkn
5+
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
6+
-->
7+
<html>
8+
<head>
9+
<title>Aerial by HTML5 UP</title>
10+
<meta charset="utf-8" />
11+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
12+
<link rel="stylesheet" href="assets/css/main.css" />
13+
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
14+
</head>
15+
<body class="is-preload">
16+
<div id="wrapper">
17+
<div id="bg"></div>
18+
<div id="overlay"></div>
19+
<div id="main">
20+
21+
<!-- Header -->
22+
<header id="header">
23+
<h1>Adam Jensen</h1>
24+
<p>Security Chief &nbsp;&bull;&nbsp; Cyborg &nbsp;&bull;&nbsp; Never asked for this</p>
25+
<nav>
26+
<ul>
27+
<li><a href="#" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
28+
<li><a href="#" class="icon brands fa-facebook-f"><span class="label">Facebook</span></a></li>
29+
<li><a href="#" class="icon brands fa-dribbble"><span class="label">Dribbble</span></a></li>
30+
<li><a href="#" class="icon brands fa-github"><span class="label">Github</span></a></li>
31+
<li><a href="#" class="icon solid fa-envelope"><span class="label">Email</span></a></li>
32+
</ul>
33+
</nav>
34+
</header>
35+
36+
<!-- Footer -->
37+
<footer id="footer">
38+
<span class="copyright">&copy; Untitled. Design: <a href="http://html5up.net">HTML5 UP</a>.</span>
39+
</footer>
40+
41+
</div>
42+
</div>
43+
<script>
44+
window.onload = function() { document.body.classList.remove('is-preload'); }
45+
window.ontouchmove = function() { return false; }
46+
window.onorientationchange = function() { document.body.scrollTop = 0; }
47+
</script>
48+
</body>
49+
</html>

0 commit comments

Comments
 (0)