-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbillboard.html
More file actions
30 lines (24 loc) · 988 Bytes
/
billboard.html
File metadata and controls
30 lines (24 loc) · 988 Bytes
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 xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Billboard</title>
<link href='https://fonts.googleapis.com/css?family=Pinyon+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Anton' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Poiret+One' rel='stylesheet' type='text/css'>
<link href='./css/font-awesome.min.css' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="./css/billboard.css">
<script src="https://code.jquery.com/jquery-2.1.4.min.js" type="text/javascript"></script>
</head>
<body>
<div id="billboard" class="view">
<div class="title">BILLBOARD</div>
<div class="results-holder">
<div class="no">No messages...<br>Click the '+' button to add a new message</div>
</div>
<div class="add-message-holder">
<i class="fa fa-plus add-msg-btn clickable"></i>
</div>
</div>
</body>
</html>