-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.html
67 lines (60 loc) · 2.04 KB
/
start.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
67
<!DOCTYPE html>
<html>
<head>
<title>Aspirinium | Möbius strip</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata">
<link rel="icon" href="imgs/aspicon.png">
<style>
body, html {
height: 100%;
font-family: "Inconsolata", sans-serif;
}
.bgimg {
background-position: center;
background-size: cover;
background-image: url("imgs/old_comp.jpeg");
min-height: 75%;
}
</style>
</head>
<body>
<!-- Links (sit on top) -->
<div class="w3-top">
<div class="w3-row w3-padding w3-black" style="alignment: center">
<div class="w3-col s3">
<a href="./index.html" class="w3-button w3-block w3-black">HOME</a>
</div>
<div class="w3-col s3">
<a href="./index.html#about" class="w3-button w3-block w3-black">ABOUT</a>
</div>
<div class="w3-col s3">
<a href="./index.html#current_projects" class="w3-button w3-block w3-black">CURRENT PROJECTS</a>
</div>
<div class="w3-col s3">
<a href="./index.html#contact" class="w3-button w3-block w3-black">CONTACT</a>
</div>
</div>
</div>
<!-- Header with image -->
<header class="bgimg w3-display-container w3-grayscale-min" id="home">
<div class="w3-display-middle w3-center">
<span class="w3-text-white" style="font-size:90px">Möbius strip</span>
</div>
</header>
<!-- Add a background color and large text to the whole page -->
<div class="w3-sand w3-grayscale w3-large">
<div class="w3-container">
<div class="w3-content" style="max-width:700px"></div>
<h2 class="post-title"><a href="blog_pages/books.html">List of international books</a></h2>
<p>My reading project.</p>
</div>
</div>
</div>
<script>
// Tabbed Menu
</script>
</body>
</html>