-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML_Task1.html
More file actions
66 lines (61 loc) · 2.21 KB
/
Copy pathHTML_Task1.html
File metadata and controls
66 lines (61 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<style>
#mian_header{
text-align: center;
background-color: black;
color: white;
padding: 10px;
}
#mian_footer{
text-align: center;
font-size: 18px;
color: white;
/* padding: ; */
background-color: rgb(13, 13, 13);
}
</style>
</head>
<body>
<header id="mian_header">
<h1>My website</h1>
</header>
<section>
<article>
<h3>My blog post one </h3>
<small>Posted by 10 March 2025</small>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Praesentium, laudantium accusamus? Sunt, qui! Facilis, et commodi deserunt odit sit nisi omnis, magni voluptatem, id dolor nam ratione dolorum esse velit.</p>
<a href="post.html">Read more </a>
</article>
<article>
<h3>My blog post two </h3>
<small>Posted by 10 March 2025</small>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Praesentium, laudantium accusamus? Sunt, qui! Facilis, et commodi deserunt odit sit nisi omnis, magni voluptatem, id dolor nam ratione dolorum esse velit.</p>
<a href="post.html">Read more </a>
</article>
<article>
<h3>My blog post three </h3>
<small>Posted by 10 March 2025</small>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Praesentium, laudantium accusamus? Sunt, qui! Facilis, et commodi deserunt odit sit nisi omnis, magni voluptatem, id dolor nam ratione dolorum esse velit.</p>
<a href="post.html">Read more </a>
</article>
</section>
<aside>
<h3>Categories </h3>
<nav>
<ul>
<li><a href="#">Catagery 1</a></li>
<li><a href="#">Catagery 2</a></li>
<li><a href="#">Catagery 3</a></li>
</ul>
</nav>
</aside>
<footer id="mian_footer">
<p>Copyright © 2018 , My website </p>
</footer>
</body>
</html>