-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (123 loc) · 4.37 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!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="style.css" />
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="box" id="logo">
<img src="images/logo2.png" alt="" width="90%" />
</div>
<div class="box" id="head">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#carts">Courses</a></li>
<li><a href="#footer">Contact</a></li>
</ul>
</div>
<div class="box" id="script">
<p>Learn <span class="role"></span></p>
</div>
<div class="box" id="carts">
<p id="title">Special Courses:</p>
<div class="cards">
<div class="cart">
<figure>
<img src="images/python logo.png" alt="" />
<hr color="red" size="5%" />
</figure>
<figcaption>only 2000/-(10% Discount)</figcaption>
</div>
<div class="cart">
<figure>
<img src="images/java.png" alt="" />
<hr color="red" size="5%" />
</figure>
<figcaption>only 2000/-(10% Discount)</figcaption>
</div>
<div class="cart">
<figure>
<img src="images/machine learning.jpeg" alt="" id="pen" />
<hr color="red" size="5%" />
</figure>
<figcaption> only 3000/- (20% Discount)</figcaption>
</div>
<div class="cart">
<figure>
<img src="images/data science.png" alt="" id="pen" />
<hr color="red" size="5%" />
</figure>
<figcaption>only 3000/- (25% Discount) </figcaption>
</div>
<div class="cart">
<figure>
<img src="images/web development.jpeg" alt="" id="pen" />
<hr color="red" size="5%" />
</figure>
<figcaption>only 3000/- (15% Discount)</figcaption>
</div>
<div class="cart">
<figure>
<img src="images/djongo.png" alt="" id="pen" />
<hr color="red" size="5%" />
</figure>
<figcaption>only 3000/-(5% Discount)</figcaption>
</div>
<div class="cart">
<figure>
<img src="images/phplogo.jpg" alt="" id="pen" />
<hr color="red" size="5%" />
</figure>
<figcaption>only 4000/- (5% Discount)</figcaption>
</div>
<div class="cart">
<figure>
<img src="images/cybersecurity.jpeg" alt="" id="pen" />
<hr color="red" size="5%" />
</figure>
<figcaption>only 4000/- (35% Discount)</figcaption>
</div>
</div>
</div>
<div class="box" id="footer">
<h2>Contact Us</h2>
<hr size="3%" color="pink" width="50%" />
<div class="links">
<a href="mailto:cource@gmail.com" target="_blank">
<img src="images/email.png" alt="" width="3.8%" />
</a>
<a href="https://www.facebook.com/" target="_blank"
><img src="images/facebook.png" alt="" width="3.8%"
/></a>
<a href="https://www.whatsapp.com/" target="_blank"
><img src="images/whatsapp.png" alt="" width="3.5%"
/></a>
<a href="https:www.instagram.com" target="_blank"
><img src="images/instagram.png" alt="" width="4%"
/></a>
</div>
<span>© Copyright.All Rights Reserved. </span>
</div>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<script
src="https://kit.fontawesome.com/58a810656e.js"
crossorigin="anonymous"
></script>
<script>
var typeData = new Typed(".role", {
strings: ["Python", "Java", "Machine Learning","Data Science","web development","Django","PHP","Cyber Security"],
loop: true,
typeSpeed: 100,
backSpeed: 80,
backDelay: 1000,
});
</script>
</html>