-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
33 lines (33 loc) · 1 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<title>Contact Page</title>
<link rel="stylesheet" href="css/1style.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<div id="flashMessage">
Your message have been sent!
</div>
<div class="blogNewPost">
<h1 class="blogPage-title">Send new message:</h1>
<p class="blogTitle-area">
<label>Email:</label>
<input type="text" id="blogTitleInput">
</p>
<p class="blogContent-area">
<label>Content</label>
<textarea id="blogContentInput"></textarea>
</p>
<p>
<button id="previewButton">Send</button>
</p>
</div>
<div class="blogPreviewArea">
<h2 id="blogTitlePreview"></h2>
<div id="blogContentPreview">
</div>
</div>
<script src="js/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/app.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>