-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsite.html
72 lines (58 loc) · 1.6 KB
/
website.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Load font awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- The social media icon bar -->
<div class="icon-bar">
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="google"><i class="fa fa-google"></i></a>
<a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
<a href="#" class="youtube"><i class="fa fa-youtube"></i></a>
</div>
<script src ="diamond.js"></script>
<link rel="stylesheet" href="diamonds.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Three Diamonds Website</title>
</head>
<div class ="titleBox">
<h1 class="title">
<u>Three Diamonds</u>
</h1>
<h2 class= "sub1">
Bar & Grill
</h2>
</div>
<!--modify here later, add more tabs and info -->
<div id="navbar">
<a href="#home">Home</a>
<a href="#news">News</a>
<a href="#contact">Contact</a>
</div>
<section class="w3-container w3-center" style="max-width:600px">
<h2 class="w3-wide">THE BAND</h2>
<p class="w3-opacity"><i>We love music</i></p>
</section>
<!-- Page content -->
<h3>
Join our wonderful family!
</h3>
<footer>
<h4>
Address:
</h4>
<p>
1 Horner Way, Rowley Regis, Halesowen B65 0JQ
</p>
<h4>
To contact us:
</h4>
<p>
0121 559 6040
</p>
</footer>
</body>
</html>