-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (49 loc) · 1.46 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
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - Landing page</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="container">
<h1>Awesome Landing page</h1>
<a href="about.html">About</a>
<div id="card-holder">
<div class="card">
<img src="images/tree.png" alt="tree in hand">
<h3>Plan trees</h3>
</div>
<div class="card">
<img src="images/deal.png" alt="shake hands">
<h3>Make friends</h3>
</div>
<div class="card">
<img src="images/money.png" alt="profit">
<h3>Profit</h3>
</div>
</div>
<div class="newsletter">
<h3>Newsletter</h3>
<p>Sign up to our newsletter to recive awesome stuff!</p>
<form>
<input type="email" id="email">
<button type="submit">Subscribe</button>
<input type="checkbox" id="terms">
<label for="terms">I accept the terms and conditions</label>
</form>
<div id="closex">
x
</div>
<div id="questionmark">
?
</div>
</div>
</div>
<!-- partial -->
</body>
</html>