generated from raja21068/yoga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbithh-cantrol.html
155 lines (144 loc) · 5.45 KB
/
bithh-cantrol.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Birth Control Methods Beyond Condoms</title>
<style>
body {
font-family: Arial, sans-serif;
color: #333;
background: #f2f6fa;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: auto;
background-color: #fff;
padding: 25px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
color: #007bff;
font-size: 2em;
margin-bottom: 20px;
}
.section-title {
font-size: 1.5em;
color: #0056b3;
margin-top: 20px;
}
p, ul {
text-align: left;
color: #555;
line-height: 1.6;
font-size: 1.1em;
}
ul {
padding-left: 1.2em;
}
.method-card {
background-color: #e9f7fe;
padding: 15px;
margin: 15px 0;
border-radius: 8px;
text-align: left;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.method-title {
font-weight: bold;
font-size: 1.2em;
color: #007bff;
margin-bottom: 8px;
}
.pros, .cons {
color: #333;
margin: 5px 0;
}
.pros {
color: #4CAF50;
}
.cons {
color: #F44336;
}
</style>
</head>
<body>
<div class="container">
<h1>Birth Control Methods Beyond Condoms</h1>
<p>Exploring various birth control options can help you make informed choices based on your health, lifestyle, and personal preferences. Below are some of the most common methods along with their pros and cons.</p>
<h2 class="section-title">Hormonal Birth Control</h2>
<!-- Birth Control Pill -->
<div class="method-card">
<div class="method-title">Birth Control Pill</div>
<p>A daily pill that contains hormones to prevent pregnancy. It’s highly effective when taken consistently at the same time each day.</p>
<ul class="pros"><strong>Pros:</strong>
<li>Regulates menstrual cycle</li>
<li>Reduces cramps and acne</li>
</ul>
<ul class="cons"><strong>Cons:</strong>
<li>Must be taken daily</li>
<li>Potential side effects like nausea and mood changes</li>
</ul>
</div>
<!-- Birth Control Patch -->
<div class="method-card">
<div class="method-title">Birth Control Patch</div>
<p>A patch worn on the skin that releases hormones. Replaced weekly for three weeks with one patch-free week.</p>
<ul class="pros"><strong>Pros:</strong>
<li>Only requires weekly attention</li>
<li>Can be worn discreetly</li>
</ul>
<ul class="cons"><strong>Cons:</strong>
<li>May cause skin irritation</li>
<li>Less effective for individuals over 198 lbs (90 kg)</li>
</ul>
</div>
<h2 class="section-title">Long-Acting Reversible Contraceptives (LARCs)</h2>
<!-- IUD -->
<div class="method-card">
<div class="method-title">Intrauterine Device (IUD)</div>
<p>A small, T-shaped device inserted into the uterus by a healthcare provider. Available in hormonal and copper (non-hormonal) types, lasting 3-10 years.</p>
<ul class="pros"><strong>Pros:</strong>
<li>Long-term, low-maintenance</li>
<li>Highly effective</li>
</ul>
<ul class="cons"><strong>Cons:</strong>
<li>Requires medical procedure for insertion and removal</li>
<li>May cause cramping or irregular periods</li>
</ul>
</div>
<!-- Implant -->
<div class="method-card">
<div class="method-title">Implant</div>
<p>A small rod inserted under the skin of the upper arm, releasing hormones to prevent pregnancy for up to 3 years.</p>
<ul class="pros"><strong>Pros:</strong>
<li>Very low maintenance</li>
<li>Long-lasting (up to 3 years)</li>
</ul>
<ul class="cons"><strong>Cons:</strong>
<li>May cause irregular bleeding</li>
<li>Requires medical procedure for insertion and removal</li>
</ul>
</div>
<h2 class="section-title">Natural Methods</h2>
<!-- Fertility Awareness -->
<div class="method-card">
<div class="method-title">Fertility Awareness</div>
<p>A method that involves tracking menstrual cycle signs to identify fertile days. Requires careful monitoring and knowledge of one’s cycle.</p>
<ul class="pros"><strong>Pros:</strong>
<li>No hormones or devices involved</li>
<li>Encourages body awareness</li>
</ul>
<ul class="cons"><strong>Cons:</strong>
<li>Less reliable than other methods</li>
<li>Requires daily tracking and consistency</li>
</ul>
</div>
<p class="note"><em>*Consult a healthcare provider to discuss the best birth control options based on individual health needs and lifestyle.</em></p>
</div>
</body>
</html>