-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
66 lines (48 loc) · 2.83 KB
/
about.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
<?php
require 'html-builder.php';
?>
<!DOCTYPE html>
<html>
<head>
<!-- PHP Header call [Title, Charset, CSS and Icon Link] -->
<?php insertHeader("About"); ?>
<!-- Bootstrap and font awesome-->
<link href="./css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="./css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- BEGIN NAVBAR -->
<?php insertNav(); ?>
<!-- END NAVBAR -->
<!-- BEGIN MAIN CONTENT -->
<div class="container" id="aboutText">
<!-- About us -->
<div class="page-title text-center">
<h1>About Us</h1>
<hr class="pg-titl-bdr-btm" style="background-color:blue"></hr>
</div>
<section>
<p>Doc-Dash or (Doc Dash Dash) is a website designed by developers who were tired of wasting time sharing file. Doc dash is designed to be simple, fast, easy to use, and professional. We, the developers of a free web, want to liberate you
from the hassle of signing up and down every website you visit. Share a file with anybody, anytime, and anywhere without signing up or signing in or paying a dime so you can focus on more important things like food.
</p>
<p>
But, just like everybody else who says one thing but does another, you can create an account with us and experience the benefits of a website that knows your email and personal information. Creating an account is free, however, we do like money, so we
offer extra benefits to users who pay.
</p>
</section>
<!-- Copyright -->
<div class="page-title text-center">
<h1>Copyright (or lack thereof)</h1>
<hr class="pg-titl-bdr-btm" style="background-color:blue"></hr>
</div>
<section>
<p>
You cannot share copyrighted material, unless you have the copyright! Sound obivious right? That means if you didn't pay a ridicolus amount of money (to buy the copyright), or put blood, sweat, and tears into a piece of work, you can't share it legally.
If you do share copyrighted material illegally using our website, first of all, shame on you. However, we won't hunt you down (we have more important things to do), but when a lawyer calls us up on the subject of copyright infringement,
we will gladly throw you under the bus with all of the information we collected on you.
</p>
</section>
</div>
<!-- END MAIN CONTENT-->
</body>
</html>