-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (60 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Buttons with Unique Class Names</title>
<style>
/* Some basic styling */
.button-container {
margin-bottom: 20px;
}
.custom-button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<!-- First paragraph with a button -->
<div class="button-container">
<p>Learn Python With Aadit Sharma</p>
<span>Python</span>
<h1>Python full course By Aadit Sharma</h1>
<h5>Grab the course immediately</h5>
<button class="custom-button button-1">Learn for $20</button>
</div>
<!-- Second paragraph with a button -->
<div class="button-container">
<p>Learn Machine Learning With Aadit Sharma</p>
<span>Python</span>
<h2>Machine Learning With Aadit Sharma</h2>
<h5>Grab the course immediately</h5>
<button class="custom-button button-2">Learn for $40</button>
</div>
<!-- Third paragraph with a button -->
<div class="button-container">
<p>Learn Java With Aadit Sharma</p>
<span>Java</span>
<h3>Java Learning with Aadit Sharma</h3>
<h5>Grab the course immediately</h5>
<button class="custom-button button-3">Learn for $100</button>
</div>
<!-- Fourth paragraph with a button -->
<div class="button-container">
<p>Learn Web Scrapping With Aadit Sharma</p>
<h4>Learn Web Scrapping With Aadit Sharma</h4>
<span>Web Scrapping</span>
<h5>Grab the course immediately</h5>
<button class="custom-button button-4">Learn for $30</button>
</div>
</body>
</html>