-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey_form_page2.html
48 lines (40 loc) · 1.44 KB
/
survey_form_page2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Survey Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<img src="Survey_Form1.webp", id="logo1">
<h1 id="text1">Programming Survey</h1>
<img src="Survey_Form2.webp", id="logo2">
</header><br>
<div class="survey_front">
<form class="surveyForm">
<div class="form-grp3">
<p><b>Fill up the details below to record your Survey Data:</b></p>
Name: <input type="text" name="name" id="name"><br>
Email Address: <input type="email" id="email" name="email"><br>
</div>
</form>
</div><br>
<footer class="footer">
<button class="logo3 button1"
onclick="window.location.href = 'index.html';">Prev</button>
<div id="foot1">
<p class="logo2">Thank you for participating in our survey!</p>
<p class="logo2">Copyright@2024 SurveyCorp.Inc</p>
</div>
<button type="submit" class="logo3 button2" id="navigate_button2"
onclick="myFunction()">Submit</button>
</footer>
<script>
function myFunction(){
alert("Your record was successfully submitted!");
}
</script>
</body>
</html>