-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
149 lines (98 loc) · 3.84 KB
/
blog.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/css/utils.css">
<link rel="stylesheet" href="css/css/style.css">
<link rel="stylesheet" href="css/css/blogpost.css">
<title>Shivam Personal Blog</title>
</head>
<body>
<nav class="navigation max-width-1 m-auto">
<div class="nav-left">
<span>Shivam Blog</span>
<ul>
<li><a href="/"> Home</a></li>
<li><a href="#">About</a></li>
<li><a href="/contact.html"> Contact</a></li>
</ul>
</div>
</nav>
<div class="max-width-1 m-auto">
<hr>
</div>
<div class="post-img">
<img src="img/logo.png" alt="Shivam logo">
</div>
<div class="content max-width-1 m-auto my-2">
<div class="content-left">
<h1>Welcome to My Journey</h1>
<p>Hi, I’m Shivam Singh Negi. Welcome to my blog, where I share my experiences and adventures<br> as
I transition from high school to college life. Here, you’ll find stories about my academic
journey,<br>personal growth, and the exciting new world I’m about to explore.
</p>
</div>
<div class="content-right">
<img src="img/shivam photo 1.jpeg" alt="Shivam">
</div>
</div>
<div class="max-width-1 m-auto"> <hr></div>
<div class="home-articles max-width-1 m-auto ">
<h2>Featured Articles </h2>
<div class="home-article">
<div class="home-article-img">
<img src="img/vectezzy.png" alt="Article">
</div>
<div class="home-article-content font1">
<a href="/blogpost.html"><h3>Reflections on My High School Experience</h3></a>
<div>Author-Shivam Singh Negi</div>
<span>8 march | 10 min read</span>
</div>
</div>
<div class="home-article">
<div class="home-article-img">
<img src="img/college article.png" alt="Article">
</div>
<div class="home-article-content font1">
<a href="/blogpost.html"><h3>Top 10 Tips for High School Students</h3></a>
<div>Author-Shivam Singh Negi</div>
<span>8 march | 10 min read</span>
</div>
</div>
<div class="home-article">
<div class="home-article-img">
<img src="img/college article.png" alt="Article">
</div>
<div class="home-article-content font1">
<a href="/blogpost.html"><h3>Tips For Incoming College Freshman</h3></a>
<div>Author-Shivam Singh Negi</div>
<span>8 march | 10 min read</span>
</div>
</div>
<div class="home-article">
<div class="home-article-img">
<img src="img/vectezzy.png" alt="Article">
</div>
<div class="home-article-content font1">
<a href="/blogpost.html"><h3>Your thoughts on choosing a college and major</h3></a>
<div>Author-Shivam Singh Negi</div>
<span>8 march | 10 min read</span>
</div>
</div>
<div class="home-article">
<div class="home-article-img">
<img src="img/vectezzy.png" alt="Article">
</div>
<div class="home-article-content font1">
<a href="/blogpost.html"><h3>Travel Diaries</h3></a>
<div>Author-Shivam Singh Negi</div>
<span>8 march | 10 min read</span>
</div>
</div>
</div>
<div class="footer ">
<p>Copyright 2024 © shivamblog.com </p>
</div>
</body>
</html>