-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (52 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS Course card</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class="rounded-border">
<article class="course rounded-border">
<p class="course-sale">SALE</p>
<h2 class="course-title rounded-border">CSS Fundamentals Course</h2>
<!-- challage01 -->
<!-- <div class="container"> -->
<div class="child">
<img
class="course-image rounded-border"
src="./images/related-1.jpg"
alt="css image"
/>
</div>
<div class="child">
<p class="course-price">
<strong>$50.00</strong>
</p>
<p class="related-to-price">
Level up your web styling expertise with our easy to understand CSS
fundamentals course.
</p>
<a href="https://almdrasa.com" target="_blank" rel="noopener"
>start here</a
>
<h4 class="road-map-title">Roadmap</h4>
<ul class="road-map-list">
<li class="road-map-item">HTML</li>
<li class="road-map-item">CSS</li>
<li class="road-map-item">JS</li>
</ul>
</div>
<div class="child">
<h3 class="course-list-title">You'll learn CSS fundamentals like</h3>
<ul>
<li class="course-list-item">box model</li>
<li class="course-list-item">cascade and specificity</li>
<li class="course-list-item">flexbox, grid and z-index</li>
</ul>
</div>
<!-- </div> -->
<button class="course-button rounded-border ali">Go to course</button>
</article>
</body>
</html>