-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
138 lines (126 loc) · 5.51 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Quotes Maker</title>
<!--Responsive-->
<meta name= "viewport" content="width=device-width, initial-scale=1.0">
<!--Stylesheet-->
<link rel="stylesheet" type="text/css" href="css/style2.css">
<!--Font Family-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Josefin+Sans|Tangerine|Anton|Holtwood+One+SC|Dancing+Script|Abril+Fatface|Orbitron|Shadows+Into+Light|Caveat">
<!--Bootstrap Stylesheet-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<!--Bootstrap Javascript-->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" ></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.19.0/css/mdb.min.css" rel="stylesheet">
</head>
<body>
<!--Navbar-->
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="#" class="brand"> <img src="img/logo.jpg" class="logo"> <span class="heading">QuotesCover</span></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<img src="img/toggle.jpg">
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link " href="index.html"> Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="quotemaker.html"> Quotes Maker</a>
</li>
<li class="nav-item ">
<a class="nav-link bb" href="about.html"> About</a>
</li>
</ul>
</div>
</nav>
<div class="gap"></div>
<!--Content-->
<div class="background-box">
<div class="container">
<div class="content">
<div class="row">
<div class="col-lg-12">
<div class="high-info">
<div class="high-text1"><h3>What is QuotesCover?</h3></div>
<div class="high-p"><p>In the beginning, we developed Quotescover simply as an easy place to create a quote poster. Quote poster is just an image with text over it. Now we are shifting that to be a more sophisticated web application which is capable of helping people create a beautiful piece of typographic art they can use on anything. The main philosophy of QuotesCover is simplicity and easiness. For example, social media posting, printable flyers, posters, advertisements both online and offline, announcements, even product labels or tags, book covers pages.<br><br>The main philosophy of QuotesCover is simplicity and easiness. This means the user shouldn’t have to think to use it, shouldn’t need to log in or sign up, and it should work on all devices. You, as the user, just need to open this site from your device and start creating – or choosing – the art right away. No installation needed.</p></div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="high-info">
<div class="high-text1"><h3>How does it work?</h3></div>
<div class="high-p">
<ul>
<li>Visit our website to get started with your own quote poster designs.</li><br>
<li>Upload your own photos or choose from our stock images.</li><br>
<li>Fix your images, add stunning filters and edit text.</li><br>
<li>Save and share.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="gap"></div>
<div>
<!-- Footer -->
<footer class="page-footer font-small cyan darken-3">
<!-- Footer Elements -->
<div class="container">
<!-- Grid row-->
<div class="row">
<!-- Grid column -->
<div class="col-md-12 py-5">
<div class="mb-5 flex-center">
<!-- Facebook -->
<a class="fb-ic">
<i class="fab fa-facebook-f fa-lg white-text mr-md-5 mr-3 fa-2x"> </i>
</a>
<!-- Twitter -->
<a class="tw-ic">
<i class="fab fa-twitter fa-lg white-text mr-md-5 mr-3 fa-2x"> </i>
</a>
<!-- Google +-->
<a class="gplus-ic">
<i class="fab fa-google-plus-g fa-lg white-text mr-md-5 mr-3 fa-2x"> </i>
</a>
<!--Linkedin -->
<a class="li-ic">
<i class="fab fa-linkedin-in fa-lg white-text mr-md-5 mr-3 fa-2x"> </i>
</a>
<!--Instagram-->
<a class="ins-ic">
<i class="fab fa-instagram fa-lg white-text mr-md-5 mr-3 fa-2x"> </i>
</a>
<!--Pinterest-->
<a class="pin-ic">
<i class="fab fa-pinterest fa-lg white-text fa-2x"> </i>
</a>
</div>
</div>
<!-- Grid column -->
</div>
<!-- Grid row-->
</div>
<!-- Footer Elements -->
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2020 Copyright:
<a href="https://mdbootstrap.com/">QuotesCover.com</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
</div>
</body>
</html>