-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm.html
112 lines (102 loc) · 4.38 KB
/
Form.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!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>Form</title>
<link rel = "stylesheet" type = "text/css" href="css/normalize.css">
<link rel = "stylesheet" type = "text/css" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&display=swap" rel="stylesheet">
<style>
</style>
</head>
<body>
<header>
<a margin-left: 15px href="index.html">
<img margin-left: 15px class="logoImg" src = "images/logo.png" alt = "На главную" width="113" height="35" >
</a>
<img class="menuImg" src = "images/menu.svg" alt = "Меню">
</header>
<form class = "Form" name="Person Info" method="POST" data-netlify="true" >
<fieldset>
<legend class = "Form-name">
<h2>Be a part of big family</h2>
</legend>
<div>
<p class = "Formtext">Personal Info</p>
<div>
<labeL><p class ="Formtextsmall">Name</p></labeL>
<input class = "inputborder" type = "text" name = "name" placeholder="John Smith">
</div>
<div>
<label><p class ="Formtextsmall">Birthdate</p></label>
<input type="date" name = "date">
</div>
<div>
<p class ="Formtextsmall">Sex</p>
<div>
<labeL><p class ="Formtextsmall"></p>Male</labeL>
<input type = "radio" name = "Male">
<labeL>Female</labeL>
<input type = "radio" name = "Female">
</div>
</div>
</div>
<div>
<p class = "Formtext">Contact Info</p>
<div>
<label><p class ="Formtextsmall">E-mail</p></label>
<input type="email" name = "email" placeholder = "johnsmith@gmail.com" required>
</div>
<div>
<label><p class ="Formtextsmall">Password</p></label>
<input type="password" name = "password" required>
</div>
<div>
<label><p class ="Formtextsmall">Telephone</p></label>
<input type="tel" name="tel" placeholder="+7 (916) 618-95-53" required>
</div>
<div>
<label><p class ="Formtextsmall">Convenient time for call</p></label>
<input type="time" name = "time" required>
</div>
<div class = "FormButtons">
<button class = "buttoninFormSubmit" type ="submit">Submit</button>
<button class="buttoninFormReset" type ="reset">Reset</button>
</div>
</div>
</fieldset>
</form>
<footer>
<img src = "images/BIGLOGO.png" alt="PICTURE">
<p class="center">We're a fiscally-sponsored project of a 501(c)3, Social and Environmental Entrepreneurs.</p>
<div class = "divlist">
<p>STUDENTS</p>
<p>PARENTS</p>
<p>TEACHERS</p>
<p>VOLUNTEERS</p>
<p>EVENTS</p>
<p>PUZZLES</p>
<p>ABOUT</p>
<p>NEWS</p>
<p>STORE</p>
<p>DONATE</p>
</ul>
</div>
<h3 class = 'center1'>Follow us:</h3>
<div class ='Links'>
<a href=""><img src = "images/TwitterLink.svg" alt = "Twitter"></a>
<a href="http://instagram.com"><img src = "images/InstagramLink.svg" alt = "Instagram"></a>
<a href="https://facebook.com/"><img src = "images/FacebookLink.svg" alt = "Facebook"></a>
<a href="https://www.youtube.com"><img src="images/YoutubeLink.svg" alt = "Youtube"></a>
</div>
<button class="button">
<a href ="Form.html"><p class = "button_text">SUPPORT OUR CASES</p></a>
</button>
<p class="center"> © 2007–2022 Mathopolis</p> </div>
</footer>
</body>
</html>