forked from codex-academy/codeX_BlogTeamKusinda
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNewPost.html
More file actions
71 lines (36 loc) · 974 Bytes
/
NewPost.html
File metadata and controls
71 lines (36 loc) · 974 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>
New Post
</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script type="text/javascript" src="blog1.js"></script>
<link rel="stylesheet" type="text/css" href="blog1.css">
<script>
</script>
</head>
<body>
<div id="ContentBlock">
<div id="TopItems">
<div id="TitleBox">
<center> <h1 class="headers">Post New Entry</h1> </center>
</div>
</div>
<div id="ContentItems">
<div id="MainTextBox">
<input type='text' id='PostHeading' value='Heading'>
<br>
<input type='text' id='PostBody' align="top" value='body'>
<br>
<input type='button' value="Post Blog" id='ButtonPost' onclick = "save()">
<br>
<div class="Button">
<a href="index.html" class="Button1">Back</a>
</div>
</div>
</div>
</div>
</body>
</html>