-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathform2.html
More file actions
26 lines (26 loc) · 736 Bytes
/
form2.html
File metadata and controls
26 lines (26 loc) · 736 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
<html>
<head> </head>
<body>
<form>
<h2style="font-family: 'Courier New', Courier, monospace; font-size: 18px">
Paragraph
</h2>
<p style="border: solid 2px #6699ff; text-align: center">
This is just example to create form with use of html and css styles
</p>
<br />
<h4>Form Status</h4>
Enter Username:<input
type="text"
name="name"
style="background-color: aquamarine"
/>
Enter Password:<input type="password" name="pass" /> Enter Email:<input
type="email"
name="email"
style="background-color: beige"
/>
</form>
<h3 style="border: double">Image</h3>
</body>
</html>