-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (52 loc) · 2.06 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
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
<!DOCTYPE html>
<html>
<head>
<!-- Basic Page Needs -->
<meta charset="utf-8">
<title>Welcome! Select a Tournament</title>
<meta name="description" content="A basic tournament dashboard">
<meta name="author" content="Brodie Davis">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/normalize.css">
<link rel="stylesheet" href="assets/css/skeleton.css">
<!-- Javascript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="assets/js/main.js"></script>
<!-- Favicon -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body class="splash">
<div class="background"></div>
<div class="container">
<div class="row">
<div class="onehalf column splash-focus" style="margin-top: 20%">
<div class="spash-focus">
<br/>
<h1 id="welcome">Welcome!</h1>
<div class="list-container">
<h4 id="select-message"></h4>
<ul class="summoner-list">
<li class="none"></li>
</ul>
<br/><br/>
<form>
<input class="summoner-input" type="text" name="summoner" placeholder="Summoner Name..."></input>
</form>
<!--
<div class="row">
<div class="four columns offset-by-one">
column 1
</div>
<div class"four columns">
column 2
</div>
</div>
-->
<br/><br/>
</div>
</div>
</div>
</div>
</div>
</body>
</html>