-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinline_css.html
More file actions
46 lines (40 loc) · 1.13 KB
/
inline_css.html
File metadata and controls
46 lines (40 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My personal Blog</title>
<link rel="stylesheet" href="styles.css">
<style>
p {
font-size: 18px;
font-family: Arial, sans-serif;
line-height: 1.6;
margin-bottom: 15px;
color: green;
}
</style>
</head>
<body>
<header>
<h1>My Tech Blog</h1>
<nav>
</header>
<main>
<article>
<h2> Understanding Semantic HTML</h2>
<p style="color: blue;">Semantic HTML refers to the use of HTML tags that convey the meaning and structure of the
content. It enhances
accessibility, SEO, and maintainability of web pages.</p>
</article>
<article>
<h2>Introduction to Javascript for Beginners</h2>
<p>JavaScript is a versatile programming language primarily used for enhancing interactivity on web pages. It
allows developers to create dynamic content, control multimedia, and build web applications.</p>
</article>
<footer>
<hr />
<p>© 2025 My Tech Blog</p>
</footer>
</main>
</html>