-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmsg.html
27 lines (25 loc) · 839 Bytes
/
msg.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Message Viewer</title>
<link rel="stylesheet" href="msg.css">
</head>
<body>
<div class="main">
<div class="content">
<h2 class="up">A message you would like to pass</h2>
<form id="form">
<input type="text" class="input-1" id="msg">
<input type="submit" value="submit" class="input-2" id="btn">
</form>
<h5 class="feedback">Please enter a valid input!</h5>
<h2 class="down">Last message delivered!</h2>
<h2 class="msg-content">Hello world</h2>
</div>
</div>
<script src="msg.js"></script>
</body>
</html>