-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog1.html
More file actions
74 lines (69 loc) · 3.31 KB
/
blog1.html
File metadata and controls
74 lines (69 loc) · 3.31 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
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
<!DOCTYPE html>
<html>
<head>
<title>MY BLOG</title>
<meta name ="Description" content="Awesome blog by Gitesh Sakharkar">
<meta name="keywords" content="gym,diet,workout">
<style type="text/css">
#main-header{
text-align:center;
background-color:black;
color:white;
padding:10px;
}
#main-footer{
text-align:center;
font-size:18px;
}
</style>
</head>
<body>
<header id="main-header">
<h1>MY WEBSITE </h1>
</header>
<a href="gitesh.html">GO to MAIN PAGE</a>
<section>
<article class="post">
<h3>BLOG POST ONE</h3>
<small>posted by Gitesh Sakharkar</small>
<p>You can eat healthy foods and supplements that can help to improve your<br>
stamina and keep your body ready to take up all the physical challenges during workout.<br>
Try having protein supplements, clean carbs, ashwagandha capsule, etc. These dietary<br>
supplements and foods will provide you with a boost in stamina and energy. </p>
<a href="post.html">Read More</a>
</article>
<article class="post">
<h3>BLOG POST Two</h3>
<small> posted by Gitesh Sakharkar</small>
<p> You can eat healthy foods and supplements that can help to improve your<br>
stamina and keep your body ready to take up all the physical challenges during workout.<br>
Try having protein supplements, clean carbs, ashwagandha capsule, etc. These dietary<br>
supplements and foods will provide you with a boost in stamina and energy.</p>
<a href="post.html">Read More</a>
</article>
<article class="post">
<h3>BLOG POST Three</h3>
<small> posted by Gitesh Sakharkar</small>
<p>You can eat healthy foods and supplements that can help to improve your<br>
stamina and keep your body ready to take up all the physical challenges during workout.<br>
Try having protein supplements, clean carbs, ashwagandha capsule, etc. These dietary<br>
supplements and foods will provide you with a boost in stamina and energy. </p>
<a href="post.html">Read More</a>
</article>
</section>
<aside>
<h3> CATEGORIES</h3>
<nav>
<ul>
<li><a href="#">category1</a></li>
<li><a href="#">category2</a></li>
<li><a href="#">category3</a></li>
<li><a href="#">category4</a></li>
</ul>
</nav>
</aside>
<footer id="main-footer">
<p>Copyright ©2022,my website</p>
</footer>
</body>
</html>