-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
115 lines (108 loc) · 4.13 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
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blogs | Aditya Saxena</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="queries.css" />
</head>
<body>
<nav class="navigation container">
<!-- <div class="nav-brand">ADITYA'S PORTFOLIO</div> -->
<img src="/images/nav-image.svg" alt="" class="nav-image" />
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link" href="/">Home</a>
</li>
<li class="list-item-inline">
<a class="link" href="projects.html">Projects</a>
</li>
<li class="list-item-inline link-active">
<a class="link" href="blogs.html">Blogs</a>
</li>
<li class="list-item-inline">
<a class="link" href="/">Non-Tech</a>
</li>
</ul>
</nav>
<header class="hero">
<img class="hero-img" src="/images/blogs-image.svg" alt="" />
<h1 class="hero-text animate__animated animate__pulse">
documenting my
<span class="hero-inverted">code</span>
and
<span class="hero-inverted">learnings</span>
</h1>
</header>
<section class="section section-ow">
<div class="container container-center">
<p style="display: inline">1. </p>
<h1 style="display: inline" class="blog-heading">Integrating redux into your react project</h1>
<small class="date blog-date">1 Mar 2020</small>
<p class="blog-brief">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
<img src="" alt="" class="image blog-image" />
<a
class="link link-special-secondary link-green read-more blog-hyperlink"
href="./blogreader.html"
target="_blank"
id="1"
>READ MORE
</a>
</div>
</section>
<section class="section">
<div class="container container-center">
<p style="display: inline">2. </p>
<h1 style="display: inline" class="blog-heading">Integrating redux into your react project</h1>
<small class="date blog-date">1 Mar 2020</small>
<p class="blog-brief">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
<img src="" alt="" class="image blog-image" />
<a
class="link link-special-secondary link-green read-more blog-hyperlink"
href="./blogreader.html"
target="_blank"
id="1"
>READ MORE
</a>
</div>
</section>
<footer class="footer">
<div>social media presence</div>
<ul class="list-non-bullets">
<li class="list-item-inline">
<a class="link" target="_blank" href="https://github.com/asaxena012"
><ion-icon class="github" name="logo-github"></ion-icon
></a>
</li>
<li class="list-item-inline">
<a
class="link"
target="_blank"
href="https://www.linkedin.com/in/adityasaxena012/"
><ion-icon class="linkedin" name="logo-linkedin"></ion-icon
></a>
</li>
<li class="list-item-inline">
<a
class="link"
target="_blank"
href="https://twitter.com/_aadisaxena"
>
<ion-icon class= "twitter" name="logo-twitter"></ion-icon>
</a>
</li>
</ul>
</footer>
<!-- Absolute positioned elements -->
<!-- Dark Mode Button -->
<button class="btn-theme">Dark Mode</button>
<script src="https://unpkg.com/ionicons@5.2.3/dist/ionicons.js"></script>
<script src="script.js"></script>
<script src="blog.js"></script>
</body>
</html>