-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimplewebpage.html
More file actions
80 lines (74 loc) · 3 KB
/
simplewebpage.html
File metadata and controls
80 lines (74 loc) · 3 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!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>Document</title>
</head>
<body link="#000" bgcolor="#FFCCFF">
<br>
<!-- br tag is used to create a extra line -->
<h3 align="center">
<font face="Lato" size="6"></font>
<img src="./attachment_70438547.png" alt="" height="55px" width="55px">
<!--   is used for giving spaces between words in html -->
<font face="cinzel" size="4">
<a href="#">HOME</a>
<a href="#">VIDEOS</a>
<a href="#">ABOUT</a>
<a href="#">CONTACT ME</a>
</font>
</h3>
<br />
<h1 align="center" size="6">
<font color="blue">SIMPLE WEB PAGE</font>
</h1>
<form>
<!-- form tag is used to create forms to fill details using input tag -->
<div class="container" align="center">
<h1>Sign Up</h1>
<p>PLease fill this form to create a account.</p>
<label for="email">Email</label>
<input type="text" placeholder="Enter your email" name="email" required>
<br>
<br>
<label for="password">Password</label>
<input type="password" placeholder="Enter password" name="password" id="" required>
<br>
<br>
<label for="gender">Gender</label>
<input type="radio" name="gender" id="">Male
<input type="radio" name="gender" id="">Female
<br>
<br>
<div class="sample">
<button type="button" class="cancelbtn">Cancel</button>
<button type="submit" class="signupbtn">Sign Up</button>
</div>
</div>
</form>
<hr color="black">
<!-- hr tag to give horizontal line -->
<footer>
<p align="center">Any Queries: melroydsilva4@gmail.com</p>
</footer>
<article>
<header align="center">HTML</header>
<p align="center">Hypertext Markup Language, a standardized system for tagging text files to achieve font,
colour, graphic, and hyperlink effects on World Wide Web pages.</p>
<p align="center">This is simple web page made using only html</p>
</article>
<div align="center">
<a href="./secondpage.html">PRESS TO VIEW SOME HTML TAGS</a>
</div>
</body>
</html>