-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (80 loc) · 2.31 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<html>
<head>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
top: 70px;
font-family: Verdana, Tahoma, sans-serif;
font-size: 15px;
display: flex;
justify-content: center;
margin: 0;
}
ul p {
font-style: italic;
font-style: 17px;
font-weight: bold;
}
a {
text-decoration: none;
color: #00693c
}
a:hover {
font-weight: bold;
}
li {
margin-left: 35px;
}
.header {
position: relative;
top: 0;
z-index: 100;
background-color: lightgrey;
height: 50px;
width: 100%;
padding: 20;
color: black;
text-align: left;
font-weight: bold;
font-family: 'Urbanist', sans-serif;
/* display: none; */
}
.header i {
vertical-align: baseline;
color: black;
margin-right: 5px;
font-size: 12px;
}
.page_body {
width: 100%;
padding: 10;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
position: absolute;
margin-top: 100px;
}
</style>
</head>
<body>
<div class='header'> <a disabled class='back' href='//morganiverson.github.io/ticketoffice'><i
class="fas fa-home"></i></a>
Ticket Office Webpage Review Prototypes and Examples</div>
<div class = "page_body">
<ul>
<p>Contact Us Prototype</p>
<li><a href='/ticketoffice/contact.html'>Contact Us</a></li>
<p>Loading Screen Samples</p>
<li><a href='/ticketoffice/loading1.html'>Loading Screen 1</a></li>
<li><a href='/ticketoffice/loading2.html'>Loading Screen 2</a></li>
<li><a href='/ticketoffice/loading3.html'>Loading Screen 3</a></li>
<p>Resources Webpage Protype</p>
<li><a href='/ticketoffice/resources.html'>Resources</a></li>
</ul>
</div>
</body>
</html>