-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (115 loc) · 3.35 KB
/
index.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DPH Warning - Dangerous Effects</title>
<style>
/* Global styles */
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
/* Header styles */
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
font-size: 30px;
}
/* Main content styles */
main {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 4px;
}
h2 {
color: #333;
font-size: 24px;
margin-top: 0;
margin-bottom: 10px;
}
p {
line-height: 1.5;
color: #444;
}
ul {
list-style-type: disc;
margin: 10px 0 20px 20px;
}
a {
color: #337ab7;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Footer styles */
footer {
background-color: #222;
color: #fff;
padding: 20px;
text-align: center;
}
footer p {
margin: 0;
}
footer a {
color: #fff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<!-- The header section -->
<header>
<h1>Warning: DPH (Diphenhydramine) can be Dangerous</h1>
</header>
<!-- The main content section -->
<main>
<!-- Warning section -->
<section id="warning">
<h2>Recreational Use and Misuse of DPH</h2>
<p>
The recreational use or misuse of DPH (Diphenhydramine) can have severe health risks and dangerous effects. It is important to understand the following warnings and considerations:
</p>
<ul>
<li>DPH abuse can lead to hallucinations, delirium, and confusion.</li>
<li>High doses of DPH can cause extreme drowsiness and impaired coordination.</li>
<li>DPH overdose can result in seizures, heart problems, and even death.</li>
<li>Combining DPH with other substances, especially alcohol, can increase the risks and complications.</li>
</ul>
<p>
This warning aims to inform and educate about the potential dangers associated with the recreational use or misuse of DPH. It is essential to use medications responsibly and as directed by medical professionals.
</p>
</section>
<!-- Anime girl picture -->
<img src="mem-chan.jpeg" alt="Anime Girl" style="max-width: 100%; height: auto; margin-top: 20px;">
<!-- Additional resources section -->
<section id="resources">
<h2>Additional Resources</h2>
<p>For more information and support, you can visit the following resources:</p>
<ul>
<li><a href="https://www.reddit.com/r/DPH" target="_blank">r/DPH subreddit</a></li>
<li><a href="https://discord.gg/pG9mky4ejU" target="_blank">discord</a></li>
</ul>
</section>
</main>
<!-- The footer section -->
<footer>
<p>© 2024 DPH Warning Website. All rights reserved.</p>
</footer>
</body>
</html>