-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathform-add-new.html
More file actions
52 lines (50 loc) · 2.03 KB
/
form-add-new.html
File metadata and controls
52 lines (50 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<title>React Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" type="text/css" href="css/reset.css" media="all">
<link rel="stylesheet" type="text/css" href="css/base.css" media="all">
<link rel="stylesheet" type="text/css" href="css/header.css" media="all">
<link rel="stylesheet" type="text/css" href="css/style.css" media="all">
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:700" rel='stylesheet' type='text/css'>
</head>
<body>
<div class="freshdesignweb-top"><h1><a href="#">React Demo</a></h1></div>
<div class="clr"></div>
<header>
<div id="container">
<div class="inner-padding">
<h1 class="left text-left"><strong> Restaurant Menus</strong></h1>
<div class="text-right">
<a class="btn btn-blue no-margin" href="index.html">back to home</a>
</div>
</div>
</div>
</header>
<!-- start our menu here-->
<div id="container">
<div class="inner-padding">
<form action="/action_page.php">
<label>Enter title:</label>
<input name="title" type="text" placeholder="Enter title ...">
<label>Enter link image</label>
<input name="title" type="url" placeholder="Enter link image ...">
<label>Enter description: </label>
<textarea name="description" rows="4" cols="30" placeholder="Enter description ..."></textarea>
<div class="checkBox-group">
<input id="checkBox" type="checkbox" name="checkbox">
<label class="checkbox-lable" for="checkbox1">Is new products?:</label>
</div>
<input class="btn btn-blue" type="submit" value="Save product">
</form>
<!-- end our menu -->
</div>
</div>
<div class="footer">
<div class="copyright" title="I'm Pro Marshall">Copyright © 2017 marshall.hoang FFWvn</div>
</div>
</body>
</html>