-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (35 loc) · 1.23 KB
/
index.html
File metadata and controls
41 lines (35 loc) · 1.23 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./resources/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap" rel="stylesheet">
<title>Last</title>
</head>
<body>
<div class="site-wrapper">
<div class="container">
<nav class="nav">
<a class="logo" href="index.html">Last</a>
<ul class="links">
<li class="nav-link"><a href="playground.html">Playground</a></li>
<li class="nav-link"><a href="#">Mock</a></li>
</ul>
</nav>
<main class="content">
<h1 class="header">Coming Soon.</h1>
<h3 class="sub-header">This page is coming soon so check back in future for more exciting news and info. In the meantime heres a button you can push to keep you occupied.</h3>
<br>
<br>
<button id="button">Press Me</button>
<div id="text-box"></div>
</main>
<footer>
</footer>
</div>
</div>
<script src="./resources/script.js"></script>
</body>
</html>