-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (48 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Like-Share CSS Card</title>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,700,1,0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,700,1,200" />
</head>
<body>
<div class="card-container">
<div class="image-container">
<img class="image-container" src="/desktop-wallpaper-sunset-top-best-sunset-background-relaxing-sunset.jpg" alt="">
<h1 class="card-thumbnail">Watch the World Of Nature</h1>
</div>
<div class="taskbar-container">
<div class="arrow-container">
<span class="material-symbols-outlined" id="arrow">
arrow_upward
</span>
</div>
<div class="right-container">
<div class="heart-container">
<span class="material-symbols-outlined" id="heart">
favorite
</span>
</div>
<div class="bookmark-container">
<span class="material-symbols-outlined">
bookmark
</span>
</div>
<div class="share-container">
<span class="material-symbols-outlined">
share
</span>
</div>
<div class="delete-container">
<span class="material-symbols-outlined">
delete
</span>
</div>
</div>
</div>
</div>
</body>
</html>