forked from ViktoriaMiroshnichenko/slow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextFile.html
More file actions
57 lines (50 loc) · 1.12 KB
/
TextFile.html
File metadata and controls
57 lines (50 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Webpage23</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1 {
color: #007bff;
}
p {
color: #333;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Webpage</h1>
</header>
<nav>
<ul>
<li><a href="#section1">Section 1</a></li>
<li><a href="#section3">Section 3</a></li>
</ul>
</nav>
<main>
<section id="section176857">
<h2>Section 1</h2>
<h2>Section 2</h2>
<h3>Section 1</h3>
<p>This is the content of Section 1.</p>
</section>
<section id="section27676767-494949-jjgjgjg">
<h2>Section Pection2</h2>
<p>This is the content of Section 2.</p>
</section>
<section id="section3">
<h2>Section 3</h2>
<p>This is the content of Section 3.</p>
</section>
</main>
<footer>
<p>© 2023 My First Webpage</p>
</footer>
</body>
</html>