-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet'>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/nav.css">
<title>PitHome</title>
</head>
<body>
<div class="navLI">
<nav>
<ul class="navUL">
<li class="navLI"><a href="lastmatch.html">Last Match</a></li>
</ul>
</nav>
</div>
<h1>Disruptive Innovation</h1>
<div class="grid-container">
<div class="grid-item"><!--Video For Main Screen -->
<video width="50%" controls autoplay, loop>
<source src="videos/finished.mp4" type="video/MOV">
<source src="videos/finished.mp4" type="video/ogg">
Your browser does not support HTML5 video.
</video></div>
<div class="grid-item">
<!--schedule-->
<div id="myDIV" class="header">
<h2 style="margin:5px">Schedule</h2>
<input type="text" id="myInput" placeholder="Title...">
<span onclick="newElement()" class="addBtn">Add</span>
</div>
<ul class="schedule-list" id="myUL">
</ul>
<script src="javaScript/actions.js"></script>
</div>
</div>
<h3>Our Socials</h3>
<ul>
<img src="images/INSPRSC.png" alt="West Inspire Snapchat" height="150px" width="150px"> <img src="images/Twitter.png" alt="QR for WestInspire Twitter" height="150px" width="150px"> <img src="images/Facebook.png" alt="QR for WestInspire Facebook" height="150px" width="150px">
</ul>
</body>
</html>