forked from archhachathon/mediconf2017
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (61 loc) · 1.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="css/dashboard.css">
<!-- Compiled and minified CSS -->
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<!-- Compiled and minified JavaScript -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<!-- embedded css -->
<style type="text/css">
.footer-text{
text-align: center;
}
#team{
display: flex;
justify-content: space-evenly;
}
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
main {
flex: 1 0 auto;
}
nav .brand-logo{
margin-left: 13%;
}
#indexBtn {
margin-top: 20%;
}
</style> <!-- embedded css end -->
</head> <!-- head end -->
<body>
<nav>
<div class="nav-wrapper">
<a href="#" class="brand-logo">MediConf</a>
</div>
</nav>
<main>
<div class="container center" id="indexBtn">
<a href="/dashboard" class="btn">Get Started</a>
</div>
</main>
</body> <!-- body end -->
<footer class="page-footer">
<ul id="team">
<li>© 2017 ArchHack Team</li>
<li>Junfeng Wang</li>
<li>Orik</li>
<li>Vinod</li>
<li>Marat</li>
</ul>
</footer> <!-- footer end -->
</html>