generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
117 lines (91 loc) · 3.92 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
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<title>IDLES</title>
</head>
<body>
<div class="alert alert-danger" role="alert">
<a href="music.html" target="_blank" class="alert-link"><strong>New Album NOW!</strong></a> <strong>Crawler</strong>
<small>Release 12 November 2021</small></div>
<!-- LOGO BAND -->
<header>
<a href="index.html">
<h2 class="logo">IDLES</h2>
</a>
<!--Menu and Nav items List items -->
<nav>
<ul class="menu">
<li>
<a href="music.html" target="_blank">Music</a>
</li>
<li>
<a href="videos.html" target="_blank">Videos</a>
</li>
<li>
<a href="live.html" target="_blank">Live</a>
</li>
</ul>
</nav>
</header>
<!-- Hero Image Here -->
<div class="hero-outer">
<div class="hero-image">
</div>
</div>
<!-- Add nice Text h3/h4/hr -->
<section>
<div class="container">
<h3><strong>LATEST SINGLE</strong></h3>
<hr class="block-divider block-divider--" />
<h4>
'A HYMN’ is a hymn that rejoices in the sinister flesh-eating virus of
the pedestrian. It sings the tune of normal's teeth sinking into your
neck as you sleep stood up with your eyes open. Amen'.
</h4>
<hr class="block-divider block-divider--" />
</div>
</section>
<!-- VIDEO OF THE BAND HERE! YOUTUBE And h2/hr -->
<div class="iframe-container">
<iframe
src="//www.youtube.com/embed/eYGtGcJ8rKw"
allowfullscreen
></iframe>
</div>
<!-- FOOTER WITH SING UP MODULE -->
<footer>
<div class="contanct-title text-center">
<hr class="block-divider block-divider--">
<h2>EMAILS SUCK, OURS DON'T. SUBSCRIBE.</h2>
<h3>Sign up to receive early access to tickets, news, tour dates, new music and more.</h3>
<hr class="block-divider block-divider--">
</div>
<div class="contact-form">
<form id="contact-form" method="post" action="send">
<input name="email" type="email" class="form-control" placeholder="Email Address" required><br>
<input type="submit" class="form-control submit" value="SUBSCRIBE">
</form>
</div>
<!-- Social links -->
<div class="centerdiv">
<a href="https://www.facebook.com/idlesband/" target="_blank">
<i class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/idlesband/?hl=en" target="_blank" >
<i class="fa fa-instagram"></i></a>
<a href="https://twitter.com/idlesband?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor" target="_blank">
<i class="fa fa-twitter"></i></a>
<a href="https://open.spotify.com/artist/75mafsNqNE1WSEVxIKuY5C" target="_blank">
<i class="fa fa-spotify"></i></a>
<a href="https://www.youtube.com/channel/UCVm7tYTZONPLVujGX0rAJdw" target="_blank">
<i class="fa fa-youtube"></i></a>
<a href="https://itunes.apple.com/gb/artist/idles/538474829" target="_blank">
<i class="fa fa-apple"></i></a>
</div>
</footer>
</body>
</html>