-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (76 loc) · 4.73 KB
/
index.html
File metadata and controls
92 lines (76 loc) · 4.73 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link rel="stylesheet" href="mystyle.css">
<script src="myapp.js"></script>
<title>Document</title>
</head>
<body>
<header class="theme-color">
<ul class="nav nav-pills justify-content-center">
<li class="nav-item">
<a class="nav-link theme-color" href="index.html">News</a>
</li>
<li class="nav-item">
<a class="nav-link theme-color" href="fr.html">Fixtures & Results</a>
</li>
<li class="nav-item">
<a class="nav-link theme-color" href="tabl.html">Table</a>
</li>
</ul>
</header>
<div id="news">
<div class="whitespace"></div>
<div class="news-element clearfix">
<a target="_blank" href="https://www.premierleague.com/news/616282">
<img src="res/n1.jpg" alt="Kane">
<p>Harry Kane became the 27th member of the Premier League's "100 Club" and received a special message from
the only player who reached the landmark faster than him. He may have needed two attempts from the penalty
spot at Anfield to bring up the century, but the Hotspur striker reached the milestone in the
second-quickest time in the competition’s history with his stoppage-time penalty in 2-2 draw with
Liverpool on Sunday. It took Kane just 141 matches to reach 100 Premier League goals for Spurs.
Only Alan Shearer has reached a century of Premier League goals in fewer matches, taking just 124 appearances
to become the club's first member. And Shearer had a special congratulatory message for Kane reaching
the milestone. After joking over what took Kane so long, Shearer praised Kane's "character" for taking
the penalty that got him to 100, only a few minutes after seeing his first spot-kick saved.</p>
</a>
</div>
<hr>
<div class="news-element clearfix">
<a target="_blank" href="https://www.premierleague.com/news/618037">
<img src="res/n2.jpg" alt="Gerard">
<p>The Scout is selecting five Fantasy Premier League players set to make an impact in Gameweek 27. Gerard Deulofeu
(WAT) £6.0m The winger's arrival at Vicarage Road has given FPL managers an exciting new midfield target.
Deulofeu made an early statement with an impressive home debut. A goal, assist and maximum bonus points
in Monday's 4-1 victory over Chelsea ensured a 13-point return.</p>
</a>
</div>
<hr>
<div class="news-element clearfix">
<a target="_blank" href="https://www.premierleague.com/news/618004">
<img src="res/n3.jpg" alt="Evra">
<p>West Ham United have completed the signing of Patrice Evra on a free transfer. The 36-year-old defender has
agreed to return to the Premier League with the London club until the end of the season. An experienced
left-back who made 273 top-flight appearances for Manchester United between 2005 and 2014, Evra won five
PL titles as well as the 2007/08 UEFA Champions League with the Red Devils. "I'm really happy to be a
Hammer, to be back in the Premier League and I love this game," Evra told West Ham's official website.
" I'm just happy to be here, it's really simple.</p>
</a>
</div>
</div>
<footer class="theme-color clearfix">
<p style="padding-top:8px; margin-left:10px;"> Made by Samrudh & Mujahid</p>
</footer>
</body>
</html>