-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday2.html
27 lines (24 loc) · 973 Bytes
/
day2.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>
<head>
<title>Intro To HTML5</title>
<style>
body{
background-image: url('../bck.PNG');
}
</style>
</head>
<body>
<div>
<h1 id="top">Message page</h1>
<form action="#" method="post">
<center><input type="text" name="name" placeholder="Your name" required/></center><br>
<center><input type="email" name="user_name" placeholder="[email protected]" required/></center><br>
<center><input type="text" name="subject" placeholder="some subject" required/></center><br>
<center><textarea name="message" placeholder="Enter your Message" required></textarea></center><br>
<center><input type="submit"></center><br>
<center><input type="Reset"></center>
</form>
</div>
</body>
</html>