-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 909 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="index, follow">
<meta name="language" content="English">
<meta name="revisit-after" content="1 days">
<title>Landing 1</title>
<style>
html {
background-color: #f9faff;
}
h1 {
margin: 0;
}
.title {
padding: 40px 0 10px 0;
text-align: center;
font-size: 36px;
font-weight: 700;
}
.container {
font-family: 'Lexend', sans-serif;
max-width: 600px;
margin: 0 auto;
padding: 20px 40px;
}
</style>
</head>
<body>
<div class="container">
<h1 class="title">Landing 1</h1>
</div>
</body>
</html>