forked from georgewood749/advanced_html_css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (66 loc) · 2.27 KB
/
Copy pathindex.html
File metadata and controls
72 lines (66 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Saracens</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./images/saracens_logo.png">
<link rel="stylesheet" href="">
</head>
<body>
<header>
<img class="logo" src="./images/saracens_logo.png" alt="Saracens Logo">
<h1>Saracens</h1>
</header>
<nav class="nav-bar">
<ul class="nav-bar">
<li class="nav-bar active"><a href="./index.html">Home</a></li>
<li class="nav-bar"><a href="./about.html">About</a></li>
</ul>
</nav>
<div class="flex-hori1">
<div class="flexwrap-verti1">
<div class="flex-verti2">
<h2> Introduction </h2>
</div>
<div class="flex-verti3">
<p class="foo"> Saracens Football Club are an English professional rugby union club based in North
London, England. As of the current 2022-23 season, they compete in Premiership Rugby, the highest
tier competition in English rugby, as well as the domestic Premiership Rugby Cup and the European
Rugby Champions Cup. </p>
</div>
<table id="fixtures">
<tr>
<th>Date</th>
<th>Time</th>
<th>Team</th>
</tr>
<tr>
<td>17th Sept</td>
<td>15:00</td>
<td>Harlequins</td>
</tr>
<tr>
<td>24th Sept</td>
<td>15:00</td>
<td>Gloucester</td>
</tr>
<tr>
<td>1st Oct</td>
<td>15:00</td>
<td>Leicester</td>
</tr>
<tr>
<td>15th Oct</td>
<td>15:00</td>
<td>Bath</td>
</tr>
</table>
</div>
<div class="flex-right">
<img src="./images/saracens_logo.png" class="img1">
</div>
</body>
</html>