-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMentee.html
71 lines (63 loc) · 2.37 KB
/
Mentee.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mentor Survey</title>
<link rel="stylesheet" href="styles.css">
<style>
a {
font-size: 30px;
color: #FFFFFF;
}
</style>
</head>
<header>
<a href="index.html">
<img class="BackLogo" src="https://cdn.discordapp.com/attachments/745298873026740376/1155344325148938350/New_Project_3.png" alt="Logo" width="150" height="150">
</a>
</header><br><br>
<style>
body {
background-image: url('https://img.freepik.com/free-vector/gradient-universe-background_23-2149635763.jpg');
background-size: cover;
font-family: Arial, sans-serif;
font-size: 16px;
background-color: rgb(236, 245, 246);
margin: 0;
}
</style>
<body>
<div class="container">
<section class="services">
<h2><center>Mentee Survey</h2>
<ul>
<li>
<b>Question 1:</b> Do you have experience being a mentee?
<br>
<input type="radio" name="q1" value="yes"> Yes
<input type="radio" name="q1" value="no"> No
</li>
<br>
<li>
<b>Question 2:</b> What field of study do you wish to specialize in?
<br>
<input type="checkbox" name="q2" value="math"> Math
<input type="checkbox" name="q2" value="language"> Language
<input type="checkbox" name="q2" value="science"> Science
<input type="checkbox" name="q2" value="history"> History
<input type="checkbox" name="q2" value="other"> Other
</li>
<br>
<li>
<b>Question 3:</b> Tell us the specifics of what you want to learn more about.
<br>
<input type="text" name="tell" placeholder="Your specifics..." class="large-textbox">
</li>
</ul>
<a href="Science.html" class="mentee-but">Get Matched!!</a>
</center>
</section>
</div>
</body>
</html>