-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.3 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" type="text/css" href="./node_modules/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="./main.css">
<title>utab admin</title>
</head>
<body>
<header>
<nav>
<ul class="header-nav">
<li class="back-arrow"><a href="#"><i class="fa fa-home"></i></a></li>
<li><a href="#">utab admin</a></li>
</ul>
</nav>
</header>
<main>
<h1>Which Tournament?</h1>
<ul class="list">
<li><a href="tournament_a.html"><span class="item-name">Tournament A</span><span class="right-box"><span class="item-arrow"><i class="fa fa-chevron-right"></i></span></span></a></li>
<li><a href="tournament_b.html"><span class="item-name">Tournament B</span><span class="right-box"><span class="item-arrow"><i class="fa fa-chevron-right"></i></span></span></a></li>
<li><a href="tournament_c.html"><span class="item-name">Tournament C</span><span class="right-box"><span class="item-arrow"><i class="fa fa-chevron-right"></i></span></span></a></li>
</ul>
<div class="center">or</div>
<button class="button fg-primary"><i class="fa fa-plus"></i> Create New Tournament</button>
</main>
</body>
</html>