-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetting.html
More file actions
130 lines (114 loc) · 5.24 KB
/
Copy pathsetting.html
File metadata and controls
130 lines (114 loc) · 5.24 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Setting</title>
<link href="img/emo.png" rel="icon" type="image/x-icon" />
<link rel="stylesheet" href="style.css" type="text/css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="bg">
<div class="navbar">
<p class="top">Setting</p>
<ul>
<li>Language</li>
<li>Download</li>
<li>Feedback</li>
<li>Theme</li>
<li>Help Center</li>
<li>Privacy and Policy</li>
</ul>
<h3>Login benefits</h3>
<p class="bot">
- Create your own playlist<br>
- Sync playlist with any devices<br>
- No Ads interuption<br>
</p>
<div class="icon">
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
</div>
<h5>©2022 - 2023 HomeC.<br>
All Rights Reserved</h5>
</div>
<div class="content">
<div class="name">
<img src="img/profile.jpg" alt="profile" class="pp"/>
<p class="neon">Home C<br>
EMO Free <button>Upgrade</button></p>
<a href="login.html">Log out</a>
</div>
<div class="display">
<div class="firstrow">
<label for="location">Location</label>
<select name="location" id="location">
<option>Myanmar</option>
<option>Philippines</option>
<option>Indonesia</option>
</select>
<label for="sq">Sound Quality</label>
<select name="sq" id="sq">
<option>high</option>
<option>medium</option>
<option>low</option>
</select>
</div>
<div class="secondrow">
<label style="color: aquamarine; font-family: sans-serif;">Substile</label>
<div class="check">
<input id="check" type="checkbox">
<label for="check"></label>
</div>
<label style="color: aquamarine aquamarine; font-family: sans-serif;">Explicit Content</label>
<div class="check">
<input id="checktwo" type="checkbox">
<label for="checktwo"></label>
</div>
</div>
</div>
<div class="sound">
<div class="firstbox">
<label class="label1">Make my new playests public</label>
<div class="checkbox-con">
<input id="checkbox" type="checkbox">
</div>
</div>
<div class="firstbox">
<label class="label2">Start a private session to listen anonymously</label>
<div class="checkbox-con">
<input id="checkbox" type="checkbox">
</div>
</div>
<div class="firstbox">
<label class="label3">Share my listening activity on spotify</label>
<div class="checkbox-con">
<input id="checkbox" type="checkbox">
</div>
</div>
<div class="firstbox">
<label class="label4">Show my recent play artists</label>
<div class="checkbox-con">
<input id="checkbox" type="checkbox">
</div>
</div>
<div class="firstbox">
<label class="label5">Show Friend activity</label>
<div class="checkbox-con">
<input id="checkbox" type="checkbox">
</div>
</div>
<div>
<div class="firstbox">
<label class="label6">Auto play</label>
<div class="checkbox-con">
<input id="checkbox" type="checkbox">
</div>
</div>
</div>
</div>
</div>
<a href="intro.html" class="emo">Emo</a>
</body>
</html>