forked from web-development-session-content/playo-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
147 lines (122 loc) · 5.86 KB
/
faq.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./styles/faq.css">
<title>Playo</title>
</head>
<body>
<!-- Outermost container start -->
<div id="container">
<!-- header container start-->
<div id="header">
<a href="faq.html">
<img id="logo" src="//theme.zdassets.com/theme_assets/2335848/7a73ed3d7f7b9b5fdd8427d0987705464dcb2c2a.png" alt="Playo help center">
</a>
<a id="submit_a_request" href="https://playo.zendesk.com/hc/en-us/requests/new">Submit a request</a>
</div>
<!-- header container end -->
<!-- main container start -->
<div id="main">
<!-- search bar start -->
<div id="searchbarDiv">
<i class="fa fa-search icon"></i>
<input id="query" type="search" name="query" placeholder="Search" autocomplete="off" aria-label="Search">
</div>
<!-- search bar end -->
<!-- questions container start -->
<div id="question_grid">
<a href="https://playo.zendesk.com/hc/en-us/sections/360001737213-About-Playo">
<div class="grid-item">
<p>About Playo</p>
<p>Getting you started</p>
</div>
</a>
<a href="https://playo.zendesk.com/hc/en-us/sections/360001713094-Meet-Playpals">
<div class="grid-item">
<p>Meet Playpals</p>
<p>Find players around you</p>
</div>
</a>
<a href="https://playo.zendesk.com/hc/en-us/sections/900000481186-Learn">
<div class="grid-item">
<p>Learn</p>
<p>What is the Learn Section all about, Ask The Community, Resources and more</p>
</div>
</a>
<a href="https://playo.zendesk.com/hc/en-us/sections/360001713194-Venues-Places-to-Play">
<div class="grid-item">
<p>Venues: Places to Play</p>
<p>Discover, Book & List Venues</p>
</div>
</a>
<a href="https://playo.zendesk.com/hc/en-us/sections/360001712994-Booking-Venues-Experiences">
<div class="grid-item">
<p>Booking Venues & Experiences</p>
<p>On-Demand Booking of Venues, Events, Tournaments etc.</p>
</div>
</a>
<a href="https://playo.zendesk.com/hc/en-us/sections/360001712874-Rescheduling">
<div class="grid-item">
<p>Rescheduling</p>
<p>Rescheduling Game Slots, Rescheduling Policies, Charges etc.</p>
</div>
</a>
<a href="https://playo.zendesk.com/hc/en-us/sections/360001749433-Cancellation-Refunds">
<div class="grid-item">
<p>Cancellation & Refunds</p>
<p>How to Cancel, Cancellation Policies, Refunds & more</p>
</div>
</a>
<a href="https://playo.zendesk.com/hc/en-us/sections/360001749873-Playostats-Player-Ratings">
<div class="grid-item">
<p>Playostats & Player Ratings</p>
<p>Change Self Rating of Skill, Rate Players & more</p>
</div>
</a>
<a href="https://playo.zendesk.com/hc/en-us/sections/360001713074-Payments">
<div class="grid-item">
<p>Payments</p>
<p>Saved Cards, Transaction Related Queries</p>
</div>
</a>
</div>
<div id="last_two_divs">
<a href="https://playo.zendesk.com/hc/en-us/sections/360001749893-Karma-Offers-Venue-Loyalty">
<div class="grid-item">
<p>Karma, Offers & Venue Loyalty</p>
<p>Loyalty Programs, Discounts, Offers & more</p>
</div>
</a>
<a href="https://playo.zendesk.com/hc/en-us/sections/360001713134-Account-Settings">
<div class="grid-item">
<p>Account & Settings</p>
<p>Profile, Delete Account, Privacy Policy, Terms of Service etc.</p>
</div>
</a>
</div>
<!-- question container end -->
</div>
<!-- main container end -->
<!-- Footer container div start -->
<div id="footer">
<!-- <hr style="height: 0.1px;"> -->
<div id="playoDiv">
<a id="playo_link" href="faq.html">
Playo
</a>
</div>
<div id="zendeskDiv">
<a style="color: #a5a5a5; margin-right: 20px;" href="https://www.zendesk.com/help-center/?utm_source=helpcenter&utm_medium=poweredbyzendesk&utm_campaign=text&utm_content=Playo">
Powered by Zendesk
</a>
</div>
</div>
<!-- Footer container div end -->
</div>
<!-- Outermost container end -->
</body>
</html>