-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (57 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emily's Recs</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<div class="logo">Emily's Recommendations</div>
<ul>
<li><a href="#">books</a></li>
<li><a href="#">music</a></li>
<li><a href="#">tv</a></li>
</ul>
</div>
<div class="top-block">
<div><h1>I like stuff</h1>
<p>I want to share the things I like with others. I'm doing that here.</p>
<button>sign up</button>
</div>
<img src="books-on-the-floor.jpg" alt="Stacks of books scattered across a living room floor" id="top-pic">
</div>
<div class="block-2">
<h2>Recent favorites</h2>
<div class="featured">
<div class="fav-images">
<img src="gilmore-girls.jpg" alt="The title cover of Gilmore Girls">
<img src="high-road.png" alt="The cover of High Road by Kesha">
<img src="wind-and-truth.webp" alt="An illustration of a man on a platform with lightning, clouds, and mountains surrounding him">
<img src="Idonotwantwhatihaventgot.jpg" alt="The cover of I Do Not Want What I Haven't Got by Sinéad O'Connor">
</div>
<div class="fav-text">
<p>I'm rewatching Gilmore Girls.</p>
<p>I'm listening to lots of Kesha right now.</p>
<p>Although I have complex feelings about the series, I can't wait to read Wind and Truth by Brandon Sanderson.</p>
<p>I've been really into the song "The Emperor's New Clothes" by Sinéad O'Connor lately.</p>
</div>
</div>
</div>
<div class="quote">
<p class="center">This is an inspiring quote, or a testimonial from a customer. Maybe it's just filling up space, or maybe people will actually read it. Who knows? All I know is that it looks nice.</p>
<p id="attribution">-Thor, God of Thunder</p>
</div>
<div class="cta-block">
<div class="cta">
<div class="left">
<h4>Join Last.FM!</h4>
<p>No more waiting to get your annual Spotify Wrapped - track your music and see your stats year-round!</p>
</div>
<button>Sign Up</button>
</div>
</div>
<div class="footer">This is where the copyright goes, I guess.</div>
</body>
</html>