-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
91 lines (86 loc) · 3.97 KB
/
blogs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="https://img.icons8.com/bubbles/100/000000/man-with-beard-in-green-t-shirt.png"/>
<title>Blogs | AnujKumar Yadav</title>
</head>
<body>
<!-- Header -->
<section id="header">
<div class="headers container">
<div class="nav-bar">
<div class="brand">
<a href="index.html"><h1><span>a</span>nuj <span>y</span>adav</h1></a>
</div>
<div class="nav-list">
<div class="hamburger"><div class="bar"></div></div>
<ul>
<li><a href="index.html" data-after="Home">Home</a></li>
<li><a href="project.html" data-after="Projects">Projects</a></li>
<li><a href="blogs.html" data-after="Blogs">Blogs</a></li>
</ul>
</div>
</div>
</div>
</section>
<!-- End Header -->
<div class="container fluid-container">
<header class="heros">
<h1 class="hero-heading">My <span class="heading-inverted">Blogs</span></h1>
</header>
<section class="section ow">
<h1 class="heading">get started with HTML</h1>
<p class="para description">HTML (HyperText Markup Language) is the most basic building block of the Web. It defines the meaning and structure of web content. Other…
</p>
<a class="link" target="_blank" href="https://anujf0510.medium.com/html-crash-course-39f4ba0233e">Read It</a>
</section>
<section class="section">
<h1 class="heading">The Guide To Git Terminology</h1>
<p class="para description">Git is a distributed version-control system for tracking the changes in source code during software development…</p>
<a class="link" target="_blank" href="https://anujf0510.medium.com/the-guide-to-git-terminology-bbae2a3d8af5">Read It</a>
</section>
<section class="section ow">
<h1 class="heading">Understanding The Document Object Model(DOM)</h1>
<p class="para description">When you open a web page in your browser, Then browser creates a representation of that document known as a document object model. Other…
</p>
<a class="link" target="_blank" href="https://anujf0510.medium.com/understanding-the-document-object-model-dom-bd2fda9ffdab">Read It</a>
</section>
</div>
<!-- Footer -->
<section id="footer">
<div class="footer container">
<div class="brand"><h1><span>a</span>nuj <span>y</span>adav</h1></div>
<h2>Your Complete Web Solution</h2>
<div class="social-icon">
<div class="social-item">
<a href="https://www.linkedin.com/in/anujkumar-yadav-29b2521aa/" target="_blank"><img src="https://img.icons8.com/bubbles/100/000000/linkedin.png"/>
</div>
<div class="social-item">
<a href="https://www.instagram.com/iamanujk_" target="_blank"><img src="https://img.icons8.com/bubbles/100/000000/instagram-new.png"/></a>
</div>
<div class="social-item">
<a href="https://twitter.com/home" target="_blank"><img src="https://img.icons8.com/bubbles/100/000000/twitter.png"/></a>
</div>
<div class="social-item">
<a href="https://github.com/anuj-kumary" target="_blank"><img src="https://img.icons8.com/bubbles/100/000000/github.png"/></a>
</div>
</div>
<p>Copyright © 2021 Anuj. All rights reserved</p>
</div>
</section>
<!-- End Footer -->
<script>
const hamburger = document.querySelector('.headers .nav-bar .nav-list .hamburger');
const mobile_menu = document.querySelector('.headers .nav-bar .nav-list ul');
const menu_item = document.querySelectorAll('.headers .nav-bar .nav-list ul li a');
hamburger.addEventListener('click', () => {
hamburger.classList.toggle('active');
mobile_menu.classList.toggle('active');
});
</script>
</body>
</html>