-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
46 lines (41 loc) · 1.1 KB
/
landing.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
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="reset.css"> <!-- CSS reset -->
<link rel="stylesheet" href="style.css"> <!-- Resource style -->
<script src="modernizr.js"></script> <!-- Modernizr -->
<style>
#title {
width: 100%;
height: 50px;
margin-top: 50px;
}
#text {
width: 100%;
height: 100px;
margin-top: 100px;
}
h1 {
text-align: center;
font-size: 3em;
font-weight: 300;
line-height: normal;
font-family: inherit;
}
</style>
</head>
<body>
<div id="title">
<h1>Bedankt voor je bestelling bij PP3D!</h1>
</div>
<div id="text">
<h1>Je ontvangt zo snel mogelijk een bevestigingsemail en binnen 48 uur zal jouw model verzonden worden.</h1>
</div>
<script src="jquery-2.1.1.js"></script>
<script src="jquery.mobile.custom.min.js"></script>
<script src="main.js"></script> <!-- Resource jQuery -->
</body>
</html>