-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.17 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
<!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://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" href="src/index.css">
<title>Motivation</title>
</head>
<body class='container center'>
<h1>My favorite quotes:</h1>
<div>
<ul id="quote-list">
</ul>
</div>
<hr>
<div>
<form id="new-quote-form">
<div class="form-group">
<label for="new-quote">New Quote</label>
<input name="quote" type="text" class="form-control" id="new-quote" placeholder="Learn. Love. Code.">
</div>
<div class="form-group">
<label for="Author">Author</label>
<input name="author" type="text" class="form-control" id="author" placeholder="Flatiron School">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<script src="src/index.js"></script>
</body>
</html>