generated from raja21068/yoga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrequency.html
100 lines (98 loc) · 2.72 KB
/
frequency.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Monthly Sexual Activity Frequency</title>
<style>
body {
font-family: Arial, sans-serif;
color: #333;
background-color: #f8f9fa;
padding: 20px;
}
h1 {
text-align: center;
color: #0056b3;
}
.container {
max-width: 800px;
margin: auto;
text-align: center;
}
.table-title {
font-size: 1.2em;
color: #007bff;
margin-bottom: 10px;
}
table {
width: 100%;
border-collapse: collapse;
background-color: #ffffff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin: auto;
}
th, td {
padding: 12px;
text-align: center;
border-bottom: 1px solid #dddddd;
}
th {
background-color: #e9ecef;
color: #333;
}
tr:hover {
background-color: #f1f1f1;
}
.note {
font-style: italic;
color: #555;
margin-top: 20px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1>Monthly Sexual Activity Frequency by Age Group and Gender</h1>
<div class="table-title">Data Table</div>
<table>
<thead>
<tr>
<th>Age Group</th>
<th>Male Frequency (Monthly)</th>
<th>Female Frequency (Monthly)</th>
</tr>
</thead>
<tbody>
<tr>
<td>18-29</td>
<td>9 times per month</td>
<td>8 times per month</td>
</tr>
<tr>
<td>30-39</td>
<td>7 times per month</td>
<td>7 times per month</td>
</tr>
<tr>
<td>40-49</td>
<td>6 times per month</td>
<td>5 times per month</td>
</tr>
<tr>
<td>50-59</td>
<td>4 times per month</td>
<td>4 times per month</td>
</tr>
<tr>
<td>60 and Above</td>
<td>3 times per month</td>
<td>2 times per month</td>
</tr>
</tbody>
</table>
<p class="note">*Data reflects average monthly frequencies, converted from yearly data for each age group and gender.</p>
</div>
</body>
</html>