-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfanart.html
48 lines (48 loc) · 2.83 KB
/
fanart.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
<!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" 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="container">
<h1>Fan Articles</h1>
</div>
<div class="container3">
<div id="row" class="photo_title" width="20"><p id="info"></p>
<a href="rossarticle.html"><h3>Ross Barkley - Should he stay or go?</h3></a>
<img class="ross-image" src="./static/img/ross.jpg" onmouseenter="document.getElementById('info').innerHTML='Ross Barkley is an English professional footballer who plays as an attacking midfielder for Premier League club Chelsea. Barkley began his professional career at Everton in 2008.'" onmouseleave="document.getElementById('info').innerHTML=''">
</div>
<div id="row" class="photo_title"><p id="info2"></p>
<a href="footyfocus.html"><h3>Football Focus show at St Lukes Church</h3></a>
<img class="ross-image" src="./static/img/focus.jpg" onmouseenter="document.getElementById('info2').innerHTML='Football Focus is a BBC television magazine programme covering football, normally broadcast live on BBC One on Saturday lunchtimes during the football season and is hosted by Dan Walker.'" onmouseleave="document.getElementById('info2').innerHTML=''">
</div>
<div id="row" class="photo_title"><p id="info3"></p>
<a href="howardkendall.html"><h3>Howard Kendall Tribute</h3></a>
<img class="ross-image" src="./static/img/howard.jpg" onmouseenter="document.getElementById('info3').innerHTML=' The most successful manager in the Club’s history, he was also one of the esteemed triumvirate of players immortalised forever as the Holy Trinity– Kendall, Harvey, Ball.'" onmouseleave="document.getElementById('info3').innerHTML=''">
</div>
</div>
<div class="footer">
<h2>Contributions</h2>
<p>We want to hear from you, if you want to send any Everton articles send to:</p>
<a href="mailto:leemolton@hotmail.co.uk"><h4>leemolton@hotmail.co.uk</h4></a>
</div>
</body>
</html>