-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.html
More file actions
72 lines (72 loc) · 3.43 KB
/
create.html
File metadata and controls
72 lines (72 loc) · 3.43 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link rel="stylesheet" href="styles/styles.css">
<title>Home</title>
</head>
<body class="container">
<header class="top-header">
<nav class="navbar navbar-inverse navbar-fixed-top">
<section class="container-fluid">
<section class="navbar-header">
<a class="navbar-brand" href="index.html#">Flashcard Maker</a>
</section>
<section class="nav">
<ul class="nav nav-pills">
<li class="active"><a href="create.html">Create <span class="sr-only">(current)</span></a></li>
<li><a href="FAQ.html#">FAQ</a></li>
<li><a href="About.html">About</a></li>
</ul>
</section>
</section>
</nav>
</header>
<main >
<section class="row">
<h1 class="margintop2">1. Front side </h1>
<form class="col-md-12">
<section class="col-sm-6">
<label for="frontSide"></label>
<input type="text" class="form-control" id="frontSide" placeholder="ex: Html">
</section>
</form>
<h1 class="">2. Back Side</h1>
<form class="col-md-12">
<section class="col-sm-6">
<label for="backside"></label>
<input type="text" class="form-control" id="backside" placeholder="ex: Hyper text markup language">
<button type="submit" id="add2" class="btn submit-btn btn-primary">Submit</button>
</section>
</form>
<section class=" createFC col-sm-6">
<p class="frontp" id="frontp"></p>
</section>
<section class=" createFC col-sm-6">
<p class="backp" id="backp"></p>
</section>
</section>
</main>
<footer class="footer-bottom">
<nav class="col-sm-6 col-sm-offset-4 ">
<ul class="nav navbar-nav">
<li><a href="contact-us.html?name=&email=&phone=&description=">Contact us</a></li>
<li><a href="https://www.facebook.com/flashcards/?ref=br_rs"><i class="fab fa-facebook fa-2x"></i></a></li>
<li><a href="https://twitter.com/CoolFlashcards"><i class="fab fa-twitter fa-2x"></i></a></li>
<li><a href="careers.html">Careers</a></li>
</ul>
</nav>
<small class="col-sm-12 copyrights text-center">
copyright © 2018 Luis Velazquez, all rights reserved.
</small>
</footer>
<script src="http://chancejs.com/chance.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="./scripts/FlashCardcreate.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>