-
Notifications
You must be signed in to change notification settings - Fork 0
/
ragam.html
60 lines (50 loc) · 1.38 KB
/
ragam.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
<!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>
<style>
body {
opacity: 0.7;
}
h2 {
color: blue;
}
p {
color: red;
}
.inputBox{
width: 300px;
height: 400px;
padding: 45px;
margin: auto;
}
label{
color: aquamarine;
font-size: 23px;
}
.text-input{
margin: 5px;
padding: 15px;
width: 200px;
}
.heading{
text-align: center;
margin-top: 20px;
}
</style>
</head>
<body background="images/r.jpg">
<h2 class="heading">Resigration For Ragam'23</h2>
<form action="POST">
<div class="inputBox">
<label for="fname">Name:</label><br>
<input type="text" placeholder="Enter Your Name" class="text-input" name="user_name"><br>
<label for="fname">Email</label><br>
<input type="email" placeholder="Enter Your Email" class="text-input" name="user_email"><br><br>
<input type="submit" value="Register">
</div>
</body>
</html>