-
Notifications
You must be signed in to change notification settings - Fork 1
/
userSettings.html
31 lines (28 loc) · 908 Bytes
/
userSettings.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Settings</title>
</head>
<body>
<h1 class="main-heading">Settings</h1>
<h2 class="section-heading">Privacy Options</h2>
<ul class="options-list">
<li>Enable/disable targeted ads</li>
<li>Allow/block third-party cookies</li>
<li>Control who can see your profile</li>
<li>Control who can see your activity log</li>
</ul>
<h2 class="section-heading">Language Selection</h2>
<ul class="options-list">
<li>Choose your preferred language</li>
<li>Select your region</li>
</ul>
<h2 class="section-heading">Notification Settings</h2>
<ul class="options-list">
<li>Enable/disable push notifications</li>
<li>Set notification preferences for specific events</li>
<li>Control who can send you notifications</li>
</ul>
</body>
</html>