-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (84 loc) · 3.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="blockh">
<h3>Website Title</h3>
<div class="links">
<a href="#">header link 1</a>
<a href="#">header link 2</a>
<a href="#">header link 3</a>
</div>
</div>
</header>
<div class="section blue">
<div class="block row">
<div class="smblock">
<h1>Hello everyone. Please, give your attention to my dog.</h1>
<div class="words">
Hello this is a website about a dog that me and my partner adopted. Her name is Misty. Here she is! >>>
</div>
<button class="right">CUTE.</button>
</div>
<div class="smblock">
<img class="curve" src="pics/misty-driving-home.jpg">
</div>
</div>
</div>
<div class="section white">
<h3>Look at these cute pics!</h3>
<div class="block row">
<div class="square curve">
<img src="pics/misty-adoption.jpg">
<div class="description">
This is Misty when we visited her at her foster home.
</div>
</div>
<div class="square curve">
<img src="pics/misty-no-couch.jpg">
<div class="description">
This is Misty before she knew she was allowed on the couch.
</div>
</div>
<div class="square curve">
<img src="pics/misty-couch.jpg">
<div class="description">
This is us after coaxing Misty onto the couch with us.
</div>
</div>
<div class="square curve">
<img src="pics/misty-car.jpg">
<div class="description">
This is Misty standing anxiously on my lap while we wait for Alex to get in the car.
</div>
</div>
</div>
</div>
<div class="section grey">
<div class="block">
<div class="quote">
Look at Misty. She is just laying on the ground and all the sudden my depression is cured and everything makes sense again.
</div>
<div class="quotee right"> -Alexandria, Misty owner</div>
</div>
</div>
<div class="section white">
<div class="block smblock blue">
<div class="words">
If you would like to sign up for emails and spam calls about our dog, click below.
</div>
<button class="center">sign me the fuck up baby</button>
</div>
</div>
<footer>
Practice Website by Pete Lake https://github.com/petelake
</footer>
</body>
</html>