This repository was archived by the owner on Aug 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhackaton.html
More file actions
108 lines (95 loc) · 4.26 KB
/
Copy pathhackaton.html
File metadata and controls
108 lines (95 loc) · 4.26 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hackathon Event Registration</title>
<link rel="stylesheet" href="hackathonstyle.css">
</head>
<body>
<header>
<img
src="c:\Users\maroof\Desktop\forms\google forms for hackaton\hackaton banner.jpeg" alt="Event Banner" />
<br>
<br>
<br>
<div class="container1">
<div class="color">
</div>
<br>
<h1 style="margin-left: 20px;">Hackathon Event Registration</h1>
<p style="margin-left: 20px;">Event Timing: August , 2025 <br>
Event Address: VIT Pune <br>
Contact us at (123) 456-7890 or VITofficial@gmail.com </p>
<hr>
<b><p style="font-style: bold; margin-left: 20px; display: inline;" >Shaikhmaroof5632@gmail.com</p></b>
<a href="" style="margin-left: 10px;">Switch Account</a>
<br>
<br>
<hr>
<p style="color: red; margin-left: 10px;"> * Indicates mandatory field </p>
</div>
</header>
<main>
<form action="" method="post">
<div class="Namecontteam">
<br>
<label for="Name" style="margin-left: 20px; margin-top: 20px; ">Enter Team Name *</label>
<br>
<br>
<input type="text" id="Name" name="Name" placeholder="Team Name" class="tname" style="margin-top: 30px;" 50px;>
</div>
<div class="PContainer">
<br>
<label for="p" style="margin-left: 20px;">Enter Name of Participents *</label>
<br>
<br>
<input type="text" name="participantsname" id="p" placeholder="Name of 1st Member" class="pname">
<input type="text" name="participantsname" placeholder="Name of 2nd Member" class="pname">
<input type="text" name="participantsname" placeholder="Name of 3rd Member" class="pname">
<input type="text" name="participantsname" placeholder="Name of 4th Member" class="pname" style="margin-top: 15px;">
</div>
<div class="Emailc">
<br>
<label for="Email" style="margin-left: 20px;">Enter the Email of Participents *</label><br>
<input type="email" id="Email" placeholder="Email of 1st Member" class="email">
<input type="email" placeholder="Email of 2nd Member" class="email">
<input type="email" placeholder="Email of 3rd Member" class="email">
<input type="email" placeholder="Email of 4th Member" class="email">
</div>
<div class="Select">
<br>
<label for="Project" style="margin-left: 20px;">Select Your Project *</label>
<p style="margin-left: 20px;">Participents should make projects in web and Application !!</p>
<select name="Projetc" id="Project" class="option">
<option value="1">Select Your Project</option>
<option value="2">Personal Finance Tracker with Smart Budgeting</option>
<option value="3">Virtual Study Room with Focus Timers</option>
<option value="4">Habit Tracker with Gamification</option>
<option value="5">Goal-Oriented To-Do List</option>
<option value="6">Automatic Email Organizer</option>
<option value="7">Personalized Meal Planner</option>
<option value="8">AI-Powered Resume Reviewer</option>
<option value="9">Smart Recipe Generator</option>
<option value="10">Stock Market Sentiment Analyzer</option>
<option value="11">AI-Generated Storytelling Platform</option>
</select>
</div>
<div class="container2">
<br>
<p style="margin-left: 20px;">Upload your ppt Here !! *</p>
<input type="file" name="ppt" id="ppt" style="margin-left: 20px;" class="fileb" accept="ppt.x">
</div>
<div class="payment">
<br>
<p style="margin-left: 20px;">Pay The Registration Fee Here *</p>
<button style="margin-left: 20px;">Click Here To Pay</button>
</div>
<footer>
<input type="submit" value="Submit" class="Submit">
<input type="reset" value="Clear" class="Clear">
</footer>
</form>
</main>
</body>
</html>