-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHtmlsecondsite.html
111 lines (98 loc) · 3.34 KB
/
Htmlsecondsite.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
<!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>
<link rel="stylesheet" href="htmlsecondsite.css">
</head>
<body>
<h1 id="h11">CSS selectors</h1>
<section id="sec1">
<div class="container">
<div class="form">
<form action="">
<h1 id="h12">Register Form</h1>
<label for="name" class="label">First name:</label>
<br>
<input class="input1" type="text" name="" id="name" placeholder="Enter name... ">
<br><br><br>
<label for="last" class="label">Last name:</label>
<br>
<input class="input1" type="text" name="" id="last" placeholder="Enter your surname">
<br><br><br>
<label for="mail" class="label">Email:</label>
<br>
<input class="input1" type="email" name="" id="mail" placeholder="Enter your email">
<br><br><br>
<label for="pword" class="label">First name</label>
<br>
<input class="input1" type="password" name="" id="pword" placeholder="Enter a password">
<br><br><br>
<input type="checkbox" name="" id="">
<label for="">Accept all requirments</label>
<br><br>
<input type="radio" name="rr" id="radio1">
<label for="radio1">Teacher</label>
<input type="radio" name="rr" id="radio2">
<label for="radio2">Student</label>
<input type="radio" name="rr" id="radio3">
<label for="radio3">Other</label>
<br><br>
<button type="submit" id="button">Sign in</button>
<br><br>
<b>register maybe later:</b>
<a href="#sec2">Skip</a>
</form>
</div>
<div class="image">
<img src="https://empoche.com/user/pages/05.help/03.getting-started/your-first-task/rocket-maker.png?g-e07b98a8" alt="" width="400" height="400">
</div>
</div>
</section>
<section id="sec2">
<h1 id="h12">User info</h1>
<div id="div2">
<img src="https://empoche.com/user/pages/05.help/03.getting-started/your-first-task/rocket-maker.png?g-e07b98a8" alt="" width="400" height="400">
<form action="">
<h2>Who are you</h2>
<textarea name="" id="txtarea" cols="70" rows="10" placeholder="add some info about yourself"></textarea>
<br>
<input id="choosefile" type="file" name="" >
<br><br>
<label for="" id="datechooser">Choose date:</label>
<input type="date" name="" id="date">
<br><br>
<label for="" id="age">Age:</label>
<input type="number" placeholder="your age..." id="yourage">
<br><br>
<button type="submit" id="savebutton">Save</button>
<br><br>
<b>Maybe later) :</b>
<a href="#sec3">Skip</a>
<br><br>
<b>Go back ad sign in:</b>
<a href="#sec1">Sign in</a>
</form>
</div>
</section>
<section id="sec3">
<h1 id="h13"> CITIES</h1>
<ul>
<li>Shusha</li>
<li>Qusar</li>
<li>Baku</li>
</ul>
<ol>
<li>Ismayilli</li>
<li>Shamakhi</li>
<li>Sirvan</li>
<li>Qazag</li>
</ol>
<p>Lorem.</p>
<p>Lorem, ipsum.</p>
<p><a href="#sec1">Go back</a> to first section</p>
</section>
</body>
</html>