-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (58 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Toffee Talk</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./static/css/style.css" />
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">Toffee Talk</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="fixt.html">Fixtures and Results</a></li>
<li><a href="ticket.html">Ticket Info</a></li>
<li><a href="fanart.html">Fan Articles</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</nav>
<div class="logo">
<img id="landing-image" src="./static/img/crest.jpg" alt="logo" width="200">
<div class="container">
<div class="image">
<img id="headline-image" src="./static/img/Seamus.jpg" width="500">
</div>
<h1>Welcome to Toffee Talk</h1>
<p>For all your Everton fixtures, results and ticket info.</p>
<br>
<br>
<div class="headline">
<p><a href="fixt.html">Come and have a look for all your latest fixtures and results.</p></a>
<p><a href="fanart.html">We also have fan articles, so have a read & send one in as well.</p></a>
<button onclick="myFunction()">Here are some fan articles submitted</button>
<p id="demo"></p>
<p id="demo2"></p>
<script>
function myFunction() {
var text1="Howard Kendall Tribute";
var text2="Football Focus show at St Lukes Church";
document.getElementById("demo").innerHTML = text1;
document.getElementById("demo2").innerHTML = text2;
}
</script>
</div>
</div>
</div>
<br>
<div class="footer">
<h4>Toffee Talk</h4>
<p>© 2018 Lee Molton</p>
</div>
</body>
</html>