-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
85 lines (69 loc) · 2.18 KB
/
contacts.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
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
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>contacts me</title>
</head>
<style>
p{
color: white;
font-size: 20px;
}
body {
background-color: rgba(0, 0, 0, 0.758);
text-align: center;
margin: 0px;
padding: 0px;
}
h1 {
text-align: center;
border: 4px solid orchid;
background-color: yellow;
border-radius: 90px;
}
#form1 {
font-size: 35px;
border: 5px solid red;
height: 520px;
width: 1000px;
text-align: center;
border-radius: 30px;
background-color: rgba(255, 166, 0, 0.61);
margin: 0px 250px;
}
footer {
background-color: black;
height: 90px;
width: 1500px;
}
footer ul li a{
list-style: none;
display: flex;
justify-content: center;
display: flex;
}
</style>
<body>
<h1>CONTACTS ME</h1>
<form id="form1">
Name: <input type="text" Name="Name" required> <br> <br>
Email: <input type=" text" name="Email" required> <br> <br>
mobile.no. <input type="tel" name="mobile. no" required> <br> <br>
Address: <input type="text" name="Address" required> <br> <br>
Gender: Male: <input type="radio" name="Gender"> Female: <input type="radio" name="Gender">
<br> <br>
Are you sure to Submit this form: <input type="checkbox" name="checkbox" required> <br> <br>
<input style="background-color:blue;" type="submit" name="submit"> <input style="background-color:pink;"
type="reset" name="reset"> <br>
</form>
<footer>
<div class="footer"></div>
<ul>
<li> <a href="https://www.linkedin.com/in/bhagwansingh-rana-264047272/">linkedin</a> </li>
<li> <a href="https://github.com/bhagwan8815">Github</a> </li>
</ul>
<p> Copyright©WWW.bhagwanPortfolio.com|All rights reserved</p>
</footer>
</body>
</html>