-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog Post.html
More file actions
79 lines (68 loc) · 2.45 KB
/
Blog Post.html
File metadata and controls
79 lines (68 loc) · 2.45 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
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Basic Blog Post Layout</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 15px;
padding: 15px;
max-width: 800px;
margin: auto;
}
h1 {
color: #333;
font-size: 2em;
text-align: center;
}
img {
border: 5px solid rgb(3, 0, 0);
border-radius: 6px;
max-width: 45%;
height: auto;
}
.content {
line-height: 0.1;
}
</style>
</head>
<body>
<article>
<header>
<h1>Understanding Web development</h1>
<p><strong>Published on: </strong> February 7, 2025</p>
<p><strong>Author: </strong> Ndenneh Chubu</p>
</header>
<section>
<h2>Introduction</h2>
<p>Web development is the process of creating and maintaining websites.
<br>It consist various aspects, including web design, web content development,
client-side/server-side scripting, and network
security configuration. In today's digital age, having a strong online presence is essential for
businesses, organizations, and individuals alike. A well-developed website can enhance visibility,
improve user engagement, and drive growth.
</p>
<section>
<h2>Key Web development Practices.</h3>
<p>To be a fully fledge Front-End developer it is recommended to keep constant practices:</p>
<ul>
<li>Practice coding everyday.</li>
<li>Join a coding community.</li>
<li>Read coding books.</li>
<li>Use GitHub to store your codes.</li>
</ul>
</section>
<img src="Web dev.jpg" alt="Web development image">
<section>
<h2>Conclusion</h2>
<P>Web development is an everyday life in the field of technology</P>
</section>
<footer>
<p><a href="Blog Post.html">Read More</a></p>
</footer>
</article>
</body>
</body>
</html>