-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Oswald">
<style>
body {
margin:0;
font-family: oswald;
}
body > div {
min-height:100%;
color:white;
background-attatchment:fixed;
}
body > div.title {
background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(https://s.numrush.nl/wp-content/uploads/2015/10/An_artificial_hand_for_robot_arm.jpg) center/cover;
padding: 150px;
}
h1,h2 {
text-decoration:underline;
margin:0;
}
h1 {
font-size:125px;
}
button {
background: #fec925;
font-family: oswald;
color: white;
border: none;
font-size: 20px;
padding: 5px 20px;
}
.sub {
font-size: 30px;
margin-bottom: 30px;
}
</style>
</head>
<body>
<menu>
<menuitem><a href="http://www.historische-zeeslagen.nl">Home</a></menuitem>
<menuitem><a href="#pagina2.html">Ontwerpproces</a></menuitem>
<menuitem><a href="#pagina3.html">Concepten</a></menuitem>
<menuitem><a href="#pagina4.html">Uitwerking</a></menuitem>
</menu>
<div class="title">
<h1>APL-PICKR</h1>
<div class="sub">Too lazy to pick them up ourselves</div>
<a href="#pagina2.html"><button class="more">ONTDEK MEER</button></a>
</div>
</body>
</html>