-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfaq.php
121 lines (108 loc) · 5.03 KB
/
faq.php
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
<!doctype html>
<html lang="en">
<head>
<title>Hello, world!</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--styles css-->
<?php include_once "styles.php"; ?>
<!--styles css-->
</head>
<body >
<!--navbar-->
<?php include_once "header.php"; ?>
<!--end of navbar-->
<div class="container-12">
<div id="ad-tpadding">
<section id="ad-imgheader" class="header l-lg-12">
<div class="l-container-center l-container--tiny">
<div class="l-lg-12">
<h1 class="hero-header__title">I've Got a Question…</h1>
<h3 class="hero-header__subtitle">Frequently Asked Questions</h3>
</div>
</div>
</section>
</div>
</div>
<br>
<div class="container-fluid">
<div class="row">
<div class="col">
<!-- left -->
</div>
<div class="col-8">
<div class="row">
<div class="col">
<h3>Sellmy Click</h3>
<br>
<a href="#" > Terms of Service</a><br>
<a href="#" > Privacy Policy</a><br>
<a href="aboutus.php" > About Us</a><br>
<a href="contactus.php">Contact US</a>
</div>
<div class="col-9">
<h3 id="ad-fontmargin">FAQ</h3><br>
<ul>
<h4>What is Sellmy Click?</h4>
<p id="ad-ptext">Sellmy Click is a vibrant community of creatives, sharing copyright free images and videos. All contents are released under Creative Commons CC0, which makes them safe to use without asking for permission or giving credit to the artist - even for commercial purposes.
</p>
<br>
<h4>Can I use your images?</h4>
<p id="ad-ptext">You can copy, modify, distribute, and use the images, even for commercial purposes, all without asking for permission or giving credits to the artist. However, depicted content may still be protected by trademarks, publicity or privacy rights. Read more in our blog.</p>
<h4>May Sellmy Click images be used on Facebook and other social platforms?</h4>
<p>Yes, you may use Sellmy Click images on social media platforms. Learn more in our blog.</p>
<br>
<h4>Why do I find Shutterstock images on Sellmy Click?</h4>
<p id="ad-ptext">Sponsored images are shown to finance Sellmy Click and to provide a choice of professional photos. Those images are marked with the Shutterstock logo.</p>
<br>
<h4>SafeSearch: How can I avoid inappropriate or explicit images?</h4>
<p id="ad-ptext">Please make use of our SafeSearch filter, which can help you block inappropriate or explicit images from your search results. The SafeSearch filter isn't 100% accurate, but it helps you avoid most adult content. You may turn SafeSearch on and off through the settings on search results pages. Learn more ..</p>
<br>
<h4>NO HOTLINKING - what does that mean?</h4>
<p id="ad-ptext">If you want to show Sellmy Click images on your website, please upload them to your server. Sellmy Click image URLs don't work on external sites.</p>
<br>
<h4>Why was my image not accepted?</h4>
<p id="ad-ptext">Your image either does not comply with our quality guidelines or the chosen tags do not sufficiently or correctly describe its content.</p>
<br>
<h4>Can I make a donation without PayPal?</h4>
<p id="ad-ptext">Image authors can only receive donations through PayPal. If you would like to support Sellmy Click, please use any of the following options:</p>
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Enter your question here</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<input type="text" name="question" class="form-control" placeholder="Your Question">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Send your Query</button>
</div>
</div>
</div>
</div>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
Have a Question?
</button>
</ul>
</div>
</div>
</div>
<div class="col">
<!-- right -->
</div>
</div>
</div>
<!-- Button trigger modal -->
<!-- Modal -->
<!--footer-->
<?php include_once "footer.php"; ?>
<!-- end of footer-->
<?php include_once "script.php"; ?>
</body>
</html>