-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 2.14 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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz"
crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Welcome to Intro to JS!</title>
</head>
<body>
<nav class="navbar navbar-expand navbar-light bg-light">
<div class="nav navbar-nav">
<a class="nav-item nav-link active" href="#">Home <span class="sr-only">(current)</span></a>
<a class="nav-item nav-link" href="https://www.facebook.com/events/1149362855220130/">FB Event</a>
<a href="https://studentcouncil.ics.uci.edu/" class="nav-itme nav-link">ICSSC Website</a>
<a href="https://www.instagram.com/icssc.uci/" class="nav-item nav-link">Instagram</a>
</div>
</nav>
<div class="container">
<h1>To Do</h1>
<hr>
<div class="col-4">
<div class="card">
<div class="card-body" id='newTodoCardBody'>
<h3 class="card-title"><input type="text" autocomplete="off" name="newTitle" id="newTitleInput" placeholder="New Todo List"></h3>
<p class="card-text">
<input type="text" placeholder="New Todo Item" autocomplete="off" class='todoItem'><i class="fas fa-plus addItem"></i>
</p>
<button type="button" class="btn btn-primary" id="newTodoBtn">Create Todo List</button>
</div>
</div>
</div>
<p class="text-muted">Thank you for coming!</p>
<p class="text-muted">More placeholder text.</p>
</div>
</body>
</html>