forked from ArtemGnatenko/JavaScript-Lectures
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (48 loc) · 1.62 KB
/
index.html
File metadata and controls
55 lines (48 loc) · 1.62 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
<!doctype html>
<html>
<head>
<title>Lecture 16</title>
<link type="text/css" rel="stylesheet" media="all" href="css/main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/main.js" defer></script>
</head>
<body>
<!-- This is base template for testing -->
<h1 class="mainTitle">
<img class="logo" src="images/logo.png" alt=""/>
<span class="text">Lecture 16</span>
</h1>
<div class="jqueryTestContainer">
<ul>
<li class="first">first</li>
<li class="second">second</li>
<li class="third">third</li>
</ul>
<span class="one">one</span><br>
<span class="two">two</span><br>
<h5>
<span class="three">three</span>
</h5>
</div>
<form class="formContainer" data-test="test value" data-test2="test value 2">
<div class="">
<label>Name <input type="text" /></label>
</div>
<div class="">
<label>Email <input type="text" name="email" data-required-error="This field id required" data-="" /></label>
</div>
<div class="">
<label>Phone <input type="text" /></label>
</div>
<div class="">
<label><input type="radio" name="userType" value="student" />Student</label><br>
<label><input type="radio" name="userType" value="employee" />Employee</label><br>
<label><input type="radio" name="userType" value="head" />Head</label>
</div>
<div class="">
<label><input type="checkbox" />Confirm our rules</label>
</div>
<input type="submit" value="Submit" />
</form>
</body>
</html>