-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (65 loc) · 3.86 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
<!-- ======BS 5.3.2===== -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- ====== icons ===== -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<script src="https://kit.fontawesome.com/54ce859d2c.js" crossorigin="anonymous"></script>
<!-- ====== CSS ===== -->
<link rel="stylesheet" href="style.css">
<!-- ====== CSS-MQ ===== -->
<link rel="stylesheet" href="styleMQ.css">
<!-- ====== fonts ===== -->
<!-- ====== carousal ===== -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css"
integrity="sha512-tS3S5qG0BlhnQROyJXvNjeEM4UpMXHrQfTGmbQ1gKmelCxlSEBUaxhRBj/EFTzpbP4RVSrpEikbmdJobCvhE3g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css"
integrity="sha512-sMXtMNL1zRzolHYKEujM2AqCLUR9F2C4/05cdbxjjLSRvMQIciEPCQZo++nk7go3BtSuK9kfa/s+a4f4i5pLkw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- ====== animate ===== -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- ====== a ===== -->
<!-- ====== a ===== -->
<!-- ====== a ===== -->
<!-- ====== a ===== -->
<!-- ====== a ===== -->
</head>
<body>
<ul>
<li><a href="A_Basics/1.units.html">1.HTML UNITS</a></li>
<li><a href="A_Basics/2.basic.html">2.HTML Basics</a></li>
<li><a href="A_Basics/3.Hover.html">3.Hover Effects</a></li>
<li><a href="B_Animations/index.html">4.Animation Effects</a></li>
<li><a href="C_Resp_Navbar/index.html">5.Navbar with dark mode</a></li>
</ul>
<ol>
<h3>Small Parts</h3>
<li><a href="A_Basics/Bouncingball.html">Bouncing ball animatin</a></li>
<li><a href="A_Basics/canvas.html">Canvas understanding</a></li>
<li><a href="B_Animations/indexFlowerAnimation.html">Flower Animation</a></li>
<li><a href="D_Table/index.html">Table Creaation </a></li>
</ol>
<!-- ------------------------------ section-1 END --------------------------------- -->
<!-- ===================================== Owl + JQiery ============================================ -->
<!-- ===================================== OC- initilisation ============================================ -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"
integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"
integrity="sha512-bPs7Ae6pVvhOSiIcyUClR7/q2OAsRiovw4vAkX+zJbw3ShAeeqezq50RIIcIURq7Oa20rW2n2q+fyXBNcU9lrw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- ===================================== BS 5.3.2 ============================================ -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<!-- ===================================== JS (allways at end) ============================================ -->
<script src="main.js"></script>
</body>
</html>