forked from Rajan-Barnwal/jobproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.html
101 lines (88 loc) · 2.54 KB
/
resources.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resources</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
header {
background-color: #007bff;
color: #fff;
padding: 20px;
text-align: center;
}
main {
padding: 20px;
max-width: 800px;
margin: 0 auto;
}
.resource-category {
margin-bottom: 20px;
}
.resource-category h2 {
border-bottom: 2px solid #007bff;
padding-bottom: 10px;
}
.resource-list {
list-style-type: none;
padding: 0;
margin: 0;
}
.resource-list li {
margin-bottom: 10px;
}
.resource-list li a {
text-decoration: none;
color: #333;
display: block;
padding: 10px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.resource-list li a:hover {
background-color: #f0f0f0;
}
</style>
</head>
<body>
<header>
<h1>Resources</h1>
<p>This page serves as a hub for resources related to our industry, such as blog posts, whitepapers, ebooks, webinars, or guides.</p>
</header>
<main>
<div class="resource-category">
<h2>Blog Posts</h2>
<ul class="resource-list">
<li><a href="#">Blog Post 1</a></li>
<li><a href="#">Blog Post 2</a></li>
<!-- Add more blog posts here -->
</ul>
</div>
<div class="resource-category">
<h2>Whitepapers</h2>
<ul class="resource-list">
<li><a href="#">Whitepaper 1</a></li>
<li><a href="#">Whitepaper 2</a></li>
<!-- Add more whitepapers here -->
</ul>
</div>
<div class="resource-category">
<h2>Webinars</h2>
<ul class="resource-list">
<li><a href="#">Webinar 1</a></li>
<li><a href="#">Webinar 2</a></li>
<!-- Add more webinars here -->
</ul>
</div>
<!-- Add more resource categories as needed -->
</main>
</body>
</html>