-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcreate.html
More file actions
61 lines (51 loc) · 2.48 KB
/
create.html
File metadata and controls
61 lines (51 loc) · 2.48 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pintereach App</title>
<link href="https://fonts.googleapis.com/css?family=Roboto|Rubik" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
</head>
<body id="layout">
<script src="js/index.js"></script>
<div id="con" class="container">
<section id="high-container" class='secStyle'>
<header id='navHeader' >
<nav id='myNav'>
<button type="button" onClick="createCard()"><a href="create.html">Create Card</a></button>
<button><a href="index.html">View Cards</a></button>
<button><a href="aboutus.html">About Us</a></button>
<button><a href="signout.html">Sign-Out</a></button>
<button><a href="contact.html">Contact</a></button>
</nav>
</header>
</section>
<!--- Main Portion-->
<section id="create-content" class='secStyle'>
<div class='crd'>
<p class='crd-category'>
<input id="category" type="text" value="category">
</p>
<p class='crd-title'>
<input id="title" type="text" value="title">
</p>
<!-- make scrollbar description text-->
<p class='crd-desc'>
<textarea id="descrip" name="description" id="txtADesc" cols="24" rows="16"></textarea>
</p>
<p class='crd-url'>
<input id="URl" type="text" value="URL">
</p>
<hr>
<p class='crd-somedia'>
<input id="socialM" type="text" value="Social Media">
</p>
</div>
</section>
<section>
<p id="test">
</p>
</section>
</div><!-- container -->
</body>
</html>