-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (22 loc) · 770 Bytes
/
index.html
File metadata and controls
25 lines (22 loc) · 770 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Messege Generator</title>
<link rel="stylesheet" href="project2.css">
</head>
<body>
<div class="container">
<h4>A Messege You Like To Pass</h4>
<form id="messege-form">
<input type="text" name="" id="messege" class="box" autocomplete="off">
<input type="submit" name="" id="submitBtn" class="button">
</form>
<h5 class="feedback">Please enter a value to pass</h5>
<h4>Last Messege Delivered!</h4>
<h4 class="messege-content">Hello World!</h4>
</div>
<script src="project2.js"></script>
</body>
</html>