-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.69 KB
/
Copy pathindex.html
File metadata and controls
40 lines (37 loc) · 1.69 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
40
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5470320112475909"
crossorigin="anonymous"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QQR60DKQBJ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QQR60DKQBJ');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This is a blog page featuring articles on various topics such as lifestyle, health, travel, technology, philosophy, and education.">
<title>My Blog - Lifestyle, Health, Travel, Technology, Philosophy, Education</title>
<link rel="icon" href="public/favicon.ico" type="image/x-icon">
<meta name="keywords" content="Blogs, Lifestyle, Health, Travel, Technology, Philosophy, Education">
<meta name="robots" content="index, follow">
<link rel="stylesheet" href="style.css">
</head>
<body>
<input type="text" id="searchBar" placeholder="Search by title">
<select id="typeFilter">
<option value="">All</option>
<option value="Lifestyle and Personal Development">Lifestyle and Personal Development</option>
<option value="Health & Fitness">Health & Fitness</option>
<option value="Travel">Travel</option>
<option value="Technology">Technology</option>
<option value="Philosophy">Philosophy</option>
<option value="Education">Education</option>
</select>
<div id="blogList"></div>
<script src="script.js"></script>
</body>
</html>