-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
106 lines (101 loc) · 3.72 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!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" />
<script
src="https://kit.fontawesome.com/efe28aa7fd.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<title>Vansh Sharma || Blogs</title>
</head>
<body>
<!-- Nav bar -->
<nav>
<ul>
<li id="home"><a href="./index.html">Home</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a class="active" href="#">Blogs</a></li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
<header>
<div class="header--info">
<h2>my Blogs</h2>
</div>
<div>
<img
class="header--hero"
src="Images/blogs.svg"
alt="Home Hero"
/>
</div>
</header>
<div class="underline"></div>
<!-- Main -->
<main>
<!--Blogs -->
<section class="blogs">
<section class="blogs-section">
<h2 class="section-heading">Blogs</h2>
<div class="blogs-holder">
<article>
<img
class="blog-img"
src="./Images/FunctionsInJSBlogs.jpg"
alt="Projects"
/>
<h3>Functions in JavaScript</h3>
<a
class="secondary-btn"
href="https://vanshsharma.hashnode.dev/functions-in-javascript"
>Read..</a
>
</article>
<article>
<img
class="blog-img"
src="./Images/OSCBlogs.jpg"
alt="Projects"
/>
<h3>First Open Source Contribution</h3>
<a
class="secondary-btn"
href="https://vanshsharma.hashnode.dev/make-your-first-open-source-contribution"
>Read..</a
>
</article>
</div>
</section>
</section>
</main>
<!-- Footer -->
<footer>
<h3 id="contact" class="footer-title">get in touch</h3>
<div class="footer-wrapper">
<a href="https://twitter.com/Vanshsh2701" target="_blank"
><i class="fab fa-twitter-square"></i>
</a>
<a href="https://github.com/VanshSh" target="_blank"
><i class="fab fa-github-square"></i
></a>
<a
href="https://www.linkedin.com/in/vanshsharma27/"
target="_blank"
><i class="fab fa-linkedin"></i
></a>
<a href="mailto:vanshsharma9354@gmail.com" target="_blank"
><i class="fas fa-envelope"></i
></a>
</div>
</footer>
</body>
</html>