-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (53 loc) · 1.93 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,600' rel='stylesheet' type='text/css'>
<title>Accessible Frog</title>
</head>
<body>
<div class="main-nav" role="navigation">
<ul class="nav">
<li class="name"><a href="#">Accessible Frog</a></li>
<li><a href="tour.html">Tour</a></li>
<li><a href="survey.html">Survey</a></li>
</ul>
</div>
<header>
<h1>Accessible Frog</h1>
<p>we make awesome music</p>
</header>
<main role="main">
<div class="card">
<div class="flex">
<img class="photo" src= "img/soul_of_the_frog.jpg" alt="soul of the frog">
<div class="information">
<h3 class="heading">New album out now</h3>
<p>Soul of the Frog</p>
<p>Digital/CD/ 2 x LP</p>
<a href="#" class="buy">Purchase Album</a>
</div>
</div>
</div>
<div class="card">
<div class="flex">
<img class="photo" src= "img/lead_singer.jpg" alt="lead singer" role="banner">
<div class="information">
<h3 class="heading">About the band</h3>
<p>Photo booth aliquip pinterest meggings. Sapiente commodo wolf put a bird on it fingerstache gentrify, meh polaroid vegan everyday carry.</p>
</div>
</div>
</div>
</main>
<footer role="contentinfo">
<ul>
<li><a href="#" class="social twitter">Twitter</a></li>
<li><a href="#" class="social youtube">Youtube</a></li>
<li><a href="#" class="social spotify">Spotify</a></li>
</ul>
<p class="copyright">Copyright 2015, Accessible Frog</p>
</footer>
</body>
</html>