-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
64 lines (64 loc) · 1.33 KB
/
list.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
<form action="" method="post">
<!DOCTYPE html>
<html>
<head>
<!-- <style>
body {
background-color: rgb(245, 236, 236);
color: rgb(16, 15, 15);
font-family: sans-serif;
}
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.card {
background-color: rgb(237, 232, 232);
color: rgb(13, 10, 10);
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.card-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}
.card-text {
font-size: 16px;
line-height: 1.5;
}
.card-link {
color: #007bff;
text-decoration: none;
}
</style> -->
</head>
<body>
<div class="container">
<div class="card">
<h1 class="card-title">Helperdotcom</h1>
<hr>
<h3>Trending Work</h3>
<p class="card-text">
<a href="#" class="card-link">#SuryakumarYadav</a>
</p>
<p class="card-text">
<a href="#" class="card-link">#ElvishYadav</a>
</p>
<p class="card-text">
Trending with <a href="#" class="card-link">#HBD_Elvish_Yadav</a>
</p>
<p class="card-text">
<a href="#" class="card-link">#Thalapathy69</a>
</p>
<p class="card-text">
Trending with <a href="#" class="card-link">One Last Time</a>
</p>
</div>
</div>
</body>
</html>
</form>