-
Notifications
You must be signed in to change notification settings - Fork 0
/
leagues.html
50 lines (47 loc) · 1.82 KB
/
leagues.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
<!DOCTYPE html>
<html>
<head>
<title>Ligen</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<link rel="icon" type="image/x-icon" href="assets/icons8-baseball-96.png">
<script src="components/header-component.js" type="text/javascript" defer></script>
<script src="components/footer-component.js" type="text/javascript" defer></script>
</head>
<body>
<header-component></header-component>
<div class="container">
<div class="heading">
<h1 class="h1-heading" id="leagues">LIGEN</h1>
</div>
<div class="content center" id="no-hover">
<div class="league">
<input type="radio" name="League" id="international" checked>
<label for="international" class="card">
<div class="row">
<div class="icon">1</div>
<div class="description">
<h4>Digital Technology</h4>
<p>Gets better every day -
stay tuned</p>
</div>
</div>
</label>
<input type="radio" name="League" id="usa">
<label for="usa" class="card">
<div class="row">
<div class="icon">2</div>
<div class="description">
<h4>Winter</h4>
<p>Winter has so much to offer -
creative activities</p>
</div>
</div>
</label>
</div>
</div>
</div>
<footer-component></footer-component>
</body>
</html>