-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
144 lines (138 loc) · 3.83 KB
/
help.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/fonts.css" />
<link rel="stylesheet" href="./css/animation.css">
<link rel="stylesheet" href="./css/responsive.css">
<title>Help - Spotify</title>
<link rel="icon" href="https://www.scdn.co/i/_global/favicon.png" />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<style>
header {
background-color: black;
position: relative;
}
</style>
</head>
<body>
<!--Header-->
<custom-header></custom-header>
<!--Header-->
<!--Search-->
<div class="Search">
<div class="container">
<div class="search-box">
<h1 class="title-1">How can we <br> help you?</h1>
<div class="searchInputBox">
<div class="seacrhIcon">
<svg xmlns="http://www.w3.org/2000/svg" role="img" focusable="false" height="24" width="24" viewBox="0 0 24 24" class=" " aria-label="Search icon">
<line x1="15.54" y1="15.54" x2="20.41" y2="20.41" stroke="#181818"/>
<circle cx="10.5" cy="10.5" r="7" fill="none" stroke="#181818"/>
</svg>
</div>
<input type="text" class="search-input" aria-label="Search" placeholder="Search" autocomplete="off" value="">
</div>
</div>
<div class="top-solution">
<div class="top-solution-inner">
<h3>ACCOUNT HELP</h3>
<a href="">I don't remember the login information</a>
</div>
<div class="top-solution-inner">
<h3>MEMBERSHIP OPTIONS</h3>
<a href="">Start or <br> join a family plan</a>
</div>
<div class="top-solution-inner">
<h3>ACCOUNT HELP</h3>
<a href="">I can't reset the password</a>
</div>
<div class="top-solution-inner">
<h3>PRIVACY AND SECURITY</h3>
<a href="">Is this Spotify email real <br>?</a>
</div>
</div>
</div>
</div>
<!--Search-->
<!--Links-->
<div class="Help-links">
<div class="container">
<div class="links_boxs">
<div class="link_box">
<h3 class="title-1 collapsible">Account and Payment</h3>
<span>
<a href="">Account Help</a>
<a href="">Payment Assistance</a>
<a href="">Membership Options</a>
<a href="">Premium for Family</a>
<a href="">Premium Duo</a>
<a href="">Premium for Student</a>
<a href="">Privacy and Security</a>
<a href="">Online dispute resolution</a>
</span>
</div>
<div class="link_box">
<h3 class="title-1 collapsible">Using Spotify</h3>
<span>
<a href="">Get Started</a>
<a href="">Playlists</a>
<a href="">Features</a>
<a href="">System and Settings Information</a>
<a href="">Troubleshooting</a>
</span>
</div>
<div class="link_box">
<h3 class="title-1 collapsible">Listen Anywhere</h3>
<span>
<a href="">Speakers</a>
<a href="">TVs</a>
<a href="">Cars</a>
<a href="">Games</a>
<a href="">Smart watches</a>
<a href="">Smart Screens</a>
<a href="">Voice assistants</a>
</span>
</div>
</div>
</div>
</div>
<!--Links-->
<!--Visit Community-->
<div class="visitCommunity">
<div class="container">
<h1 class="title-1">Visit Community</h1>
<p>Do you have questions? Find answers to your questions in our Community of expert fans from around the world!</p>
<a class="black_btn" href="#">Find Answers</a>
</div>
</div>
<!--Visit Community-->
<!--Footer-->
<custom-footer></custom-footer>
<!--Footer-->
<div id="opacity" class="opacity"></div>
<script src="./component/header.js"></script>
<script src="./component/footer.js"></script>
<script src="./js/main.js"></script>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
});
}
</script>
</body>
</html>