-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha.html
90 lines (66 loc) · 2.58 KB
/
a.html
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
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<title>My Social Web Page</title>
<style>
/* CSS for the help page content */
.help-page {
padding: 20px;
}
h1 {
color: #333333;
}
p {
color: #666666;
line-height: 1.5;
}
/* CSS for the footer */
footer {
background-color: #f2f2f2;
padding: 20px;
text-align: center;
font-size: 14px;
color: #666666;
}
/* CSS for the sticker */
.sticker {
max-width: 200px;
margin: 20px auto;
}
</style>
</head>
<body>
<h1>Welcome to My Social Web Page</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed fringilla, nunc in faucibus ullamcorper, massa velit euismod dolor, et iaculis velit tellus in leo.</p>
<p>Nulla ut elementum lectus. Proin euismod nisl vitae enim finibus, vel consectetur lectus facilisis. Ut rhoncus tristique libero at feugiat.</p>
<p>Donec a quam in ipsum rutrum scelerisque. Integer sagittis purus ac interdum tincidunt.</p>
<!-- Jokes -->
<h2>Jokes</h2>
<p>Why don't scientists trust atoms?<br>Because they make up everything!</p>
<p>Why did the scarecrow win an award?<br>Because he was outstanding in his field!</p>
<!-- Cool Slogan -->
<h2>Cool Slogan</h2>
<p>Connecting people, one post at a time!</p>
<!-- Help page content -->
<div class="help-page">
<h1>Help Page</h1>
<p>Welcome to the Help page of our social web page!</p>
<h2>Frequently Asked Questions</h2>
<h3>Question 1</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<h3>Question 2</h3>
<p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<h3>Question 3</h3>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
<h2>Contact Us</h2>
<p>If you have any further questions or need assistance, please don't hesitate to contact our support team.</p>
<p>Email: [email protected]</p>
<p>Phone: 123-456-7890</p>
</div>
<!-- Sticker -->
<img src="https://example.com/sticker.png" alt="Cool Sticker" class="sticker">
<footer>
© 2023 My Social Web Page
</footer>
</body>
</html>