-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery-concepts.html
More file actions
57 lines (57 loc) · 1.71 KB
/
jquery-concepts.html
File metadata and controls
57 lines (57 loc) · 1.71 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
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jQuery Concepts</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<link rel="stylesheet" href="https://cdn.rawgit.com/necolas/normalize.css/master/normalize.css">
<link rel="stylesheet" href="https://cdn.rawgit.com/milligram/milligram/master/dist/milligram.min.css">
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.10.0/css/tachyons.min.css"/>
<link rel="stylesheet" href="styles/style.css"/>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<nav class="flex flex-row justify-end">
<ul id="mainNav" class="flex flex-row-ns flex-column w-50-l w-100 justify-between pa4-l pa3 list">
<li>
<a href="javascript-concepts.html">JavaScripting Concepts</a>
</li>
<li>
<a href="jquery-concepts.html">jQuery Concepts</a>
</li>
<li>
<a href="plug-in.html">Plug-in</a>
</li>
</ul>
</nav>
<aside class="fixed pa5">
<ul id="auxNav">
<li>
<a href="#selectors">Selectors</a>
</li>
<li>
<a href="#get-set">Get & Set Actions</a>
</li>
<li>
<a href="#effects">Effects actions</a>
</li>
</ul>
</aside>
<main>
<h1>jQuery concepts</h1>
<section id="selectors">
<h2>The selector syntax and types of selector</h2>
</section>
<section id="get-set">
<h2>Get and set actions</h2>
</section>
<section id="effects">
<h2>Effects actions</h2>
</section>
</main>
<footer class="flex flex-row justify-end pa5">
<span>© 2019 Anastasiia Makarochkina MDIA 2294 Final Assignment</span>
</footer>
</body>
</html>