-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 2.12 KB
/
index.html
File metadata and controls
61 lines (61 loc) · 2.12 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, intial-scale=1.0">
<title>EPL</title>
<link rel="stylesheet" href="style_mom.css">
</head>
<body>
<header>
<h1>Welcome to the ENGLISH PRIMIER LEAGUE</h1>
<h3>Presented by Barclays</h3>
</header>
<div>
<h2>Choose your manager of the month</h2>
<h2>April 2023</h2>
</div>
<div id="arsenal" class="manager">
<img src="arteta.png" alt="Arsenal" width="=300" height="300">
<br>
<input type="radio" size="100px">
<div id="arsenal">Mikel Arteta</div>
</div>
<div id="liverpool" class="manager" >
<img src="klopp.png" alt="Liverpool" width="=300" height="300">
<br>
<input type="radio">
<div id="liverpool">Jurgen Klopp</div>
</div>
<div id="city" class="manager">
<img src="pep.png" alt="Manchester City" width="=300" height="300">
<br>
<input type="radio">
<div id="city">Pep Guardiola</div>
</div>
<div id="united" class="manager">
<img src="tenhag.png" alt="Manchester United" width="=300" height="300">
<br>
<input type="radio">
<div id="united">Erik Ten Hag</div>
</div>
<div id="newcastle" class="manager">
<img src="howwie.png" alt="Newcastle" width="=300" height="300">
<br>
<input type="radio">
<div id="newcastle">Eddie Howe</div>
</div>
<div id="comment">
Comments
<br>
<input type="text" placeholder="He is a good manager" name="comments" id="cbox">
<br>
<button type="button" id="button">Submit</button>
</div>
<footer>
Social
<a href="https://www.instagram.com/premierleague">Instagram</a>
<a href="https://twitter.com/premierleague">Twitter</a>
<img src="EPLsymbol.png" alt="epl" width="30px" height="30px">
</footer>
</body>
</html>