forked from wdi-atx-10/ga-cards-react
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathadd.html
42 lines (38 loc) · 1.21 KB
/
add.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cards Against Assembly™</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header class="navbar">
<h1 class="pull-left">Cards Against Assembly</h1>
</header>
<nav class="tabs">
<a href="index.html">Home</a>
<a href="add.html" class="active">Add a New Card</a>
<a href="about.html">About</a>
</nav>
<section class="container-fluid">
<div class="row">
<form name="add-card" id="add-card">
<input type="text" name="question" id="question" placeholder="What's your question?">
</form>
<br>
<div class="card">
<h4 class="card-title">A preview appears here as you type...</h4>
<h6>Cards Against Assembly</h6>
</div>
</div>
</section>
<footer>
<p>Made with <span class="heart">♥︎</span> at General Assembly</p>
</footer>
</div>
</body>
</html>