-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
91 lines (85 loc) · 3.38 KB
/
about.html
File metadata and controls
91 lines (85 loc) · 3.38 KB
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
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous" />
<link rel="stylesheet" href="styles/utilities.css">
<link rel="stylesheet" href="styles/styles.css">
<title>VectrStudios | Premade illustrations</title>
</head>
<body>
<div class="navbar">
<div class="container flex">
<h1 class="logo">VectrStudios</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</div>
<div class="about-header bg-secondary text-center">
<h2>
About VectrStudios
</h2>
</div>
<div class="flex-wrapper">
<div class="about-body container">
<h1>
Our Story
</h1>
<h2>
Making graphic design accessible to everyone, worldwide.
</h2>
<p>
Design software shouldn’t bring people a sense of struggle, yet that’s exactly how the troublesome
design
software we grew up on made us feel. With their incredibly steep learning curve and counter-intuitive
tools,
they would deter our potential as designers rather than helping us to unleash it.
</p>
<p>
We’ve all been there, and the frustration of having your creativity constricted by bad software can be
overwhelming.
</p>
<p>
At Vectr, we know design connects people - we’ve experienced it firsthand - and we believe everyone
should
experience the almost indescribable feeling that comes from expressing your creative freedom through art
and
design. This belief drives everything we do.
</p>
</div>
<!-- Footer -->
<footer class="footer bg-dark py-5">
<div class="container grid grid-3">
<div>
<h1>VectrStudios
</h1>
<p>Copyright © 2020</p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<div class="social">
<a href="#"><i class="fab fa-youtube fa-2x"></i></a>
<a href="#"><i class="fab fa-facebook fa-2x"></i></a>
<a href="#"><i class="fab fa-instagram fa-2x"></i></a>
<a href="#"><i class="fab fa-twitter fa-2x"></i></a>
</div>
</div>
</footer>
</div>
</body>
</html>