-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (112 loc) · 3.63 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- -->
<!-- Primary Meta Tags -->
<title>Job Listings | Frontend Mentor | Alamin</title>
<meta name="title" content="Job Listings | Frontend Mentor | Alamin" />
<meta
name="description"
content="Filter jobs based on role, level, languages, and tools. Build with HTML, CSS, and Vanilla JavaScript."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://job-listings-with-filtering-alamin.vercel.app"
/>
<meta
property="og:title"
content="Job Listings | Frontend Mentor | Alamin"
/>
<meta
property="og:description"
content="Filter jobs based on role, level, languages, and tools. Build with HTML, CSS, and Vanilla JavaScript."
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/CodeWithAlamin/Job-listings-with-filtering/main/screenshots/job-listings-with-filtering-preview-CodeWithAlamin.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://job-listings-with-filtering-alamin.vercel.app"
/>
<meta
property="twitter:title"
content="Job Listings | Frontend Mentor | Alamin"
/>
<meta
property="twitter:description"
content="Filter jobs based on role, level, languages, and tools. Build with HTML, CSS, and Vanilla JavaScript."
/>
<meta
property="twitter:image"
content="https://raw.githubusercontent.com/CodeWithAlamin/Job-listings-with-filtering/main/screenshots/job-listings-with-filtering-preview-CodeWithAlamin.png"
/>
<!-- Optional -->
<meta name="author" content="Alamin , CodeWithAlamin" />
<meta
name="keywords"
content="Interactive job listings, Web app development, Front-end skills showcase, HTML CSS JavaScript practice, Job search filters UI, Frontend coding project, Web development practice, Frontendmentor project"
/>
<!-- -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<script type="module" src="./src/main.ts"></script>
</head>
<body>
<article class="my-profile">
<div class="my-profile__content">
<img src="./images/my-photo.webp" alt="my photo" />
<span class="name">Alamin</span>
<p class="username">@CodeWithAlamin</p>
</div>
</article>
<header class="header">
<h1 class="sr-only">
Job listings with filtering Solution - Front Mentor
</h1>
</header>
<main>
<div class="container">
<div class="filter-container">
<div class="filter-container__filters"></div>
<button class="btn-clear">Clear</button>
</div>
<ul class="job-list"></ul>
</div>
</main>
<footer class="footer">
<div class="attribution-wrapper">
<p class="attribution">
<span>
Coded by
<a
class="attb-link"
href="https://twitter.com/CodeWithAlamin"
target="_blank"
>Alamin</a
>
</span>
<span>
Challenge by
<a
class="attb-link attb-fem"
href="https://www.frontendmentor.io/profile/CodeWithAlamin"
target="_blank"
>Frontend Mentor</a
>
</span>
</p>
</div>
</footer>
</body>
</html>