-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.23 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Course Card</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="container">
<div class="blog-card">
<img src="./download.jpg" alt="Download" class="first" />
<div class="blog-content">
<div class="course-meta">
<p class="blog-type">Understanding</p>
<div class="date">
<p class="date">Released 13 Aug 2025</p>
</div>
</div>
<h3 class="blog-title">HTML & CSS foundations</h3>
<p class="course-description">
These 2 languages are the backbone of every website, defining
structure, content, presentation and also the styling.
</p>
<div class="author">
<img
src="./avatar-jessica.jpeg"
alt="Jessica Avatar"
class="second"
width="50px"
height="50px"
/>
<p class="blog-owner">Anonymous Human</p>
</div>
</div>
</div>
</div>
</body>
</html>