-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
112 lines (104 loc) · 6.24 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
<!DOCTYPE html>
<html lan="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link href="css/style.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/57c4c79ee8.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,300&display=swap"rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<!--
main nav bar
-->
<nav class="main-nav">
<div class="logo">
<img src="images/logo.png">
</div>
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<div class="post-bt">
<a href="post.php"><i class="fas fa-plus"></i>  Post new image</a>
</div>
<ul class="nav-links">
<li><a href="gallery.php"><i class="fas fa-th"></i>  Gallery</a></li>
<li><a href="user.php"><i class="fas fa-house-user"></i>  My dashboard</a></li>
<li><a href="account.html"><i class="fas fa-user-cog"></i></i>  settings</a></li>
<li><a href="logout.php"><i class="fas fa-sign-out-alt"></i>  Sign out</a></li>
<li><a href="about.html"><i class="fas fa-question-circle"></i>  About</a></li>
</ul>
</nav>
<div class="about-body">
<h1>About Exposure</h1>
<section>
<h2>What is Exposure?</h2>
<p>Exposure is an image sharing website targeted at people who enjoy creative and inspiring photography as
well as people who have a passion for editing such photos. What sets as apart from other image sharing
websites like Instagram and flicker is the fact that we allow and encourage users to edit photos that
other users have posted. This creates a creative environment that matches passionate editors with
passionate photographers. We achieve this environment with our innovative tools and features that allow
users to see and switch between different edited versions of the same image and see information about
who edited and posted it. Exposure also features a robust web-based editor and ability to download
images and reupload it after using your favorite image editor.
</p>
</section>
<section>
<h2>When was it started?</h2>
<p>Exposure began development in the summer of 2020 it was started by a pair of computer science students to
during the COVID-19 pandemic lockdown to improve their web development skills and to pass to time in a
productive manner.
</p>
</section>
<section>
<h2>Who made it?</h2>
<p>Exposure was started by two friends, Jerin and Amar, who were both computer science students who wanted
to improve their web development skills and gain experience in creating a large scale software project.
</p>
<h3>Meet the Exposure team:</h3>
<div class="team-box">
<article class="member-box">
<img class="team-pic" src="images/amar_profile.jpg">
<h4 class="team-mem-name">Amardeep Sarang</h4>
<p class="roles">Developer, system administrator, … and basically everything else </p>
<p><b>Bio: </b> Hi I’m Amar! I’m a 4th year university student pursuing a BSc computer science
degree at Wilfrid Laurier university. My fields of interests in computer science include the
fields of AI, machine learning, data science and web development. I’m also an avid PC gamer, car
fanatic, tech enthusiast, and I enjoy chilling while watching videos about all these things on
YouTube.</p>
<div class="team-sco-links">
<span><a href="https://www.linkedin.com/in/amardeep-sarang/"><i
class="fab fa-linkedin"></i></a></span>
<span><a href="https://github.com/AmardeepSarang?tab=repositories"><i
class="fab fa-github-square"></i></a></span>
<span><a href="https://twitter.com/Amardee71554964"><i
class="fab fa-twitter-square"></i></a></span>
<span><a href="https://www.instagram.com/amarsarang98/"><i
class="fab fa-instagram-square"></i></a></span>
</div>
</article>
<article class="member-box">
<img class="team-pic" src="images/jerin_profile.jpg">
<h4 class="team-mem-name">Jerin John </h4>
<p class="roles">Developer, system administrator, … and basically everything else </p>
<p><b>Bio: </b> Hey, My Name is Jerin John. I am a Second Year Mathematics and Statistics Student Minoring in Computer Science at McMaster University.
I am a quick learner and am fascinated with all things technology. Feel Free to reach out! </p>
<div class="team-sco-links">
<span><a href="#"><i class="fab fa-linkedin"></i></a></span>
<span><a href="https://github.com/jerin10john"><i class="fab fa-github-square"></i></a></span>
<span><a href="https://twitter.com/jerin10john"><i class="fab fa-twitter-square"></i></a></span>
<span><a href="https://www.instagram.com/inside_jerry/"><i class="fab fa-instagram-square"></i></a></span>
</div>
</article>
</div>
</section>
</div>
<script src="js/nav.js"></script>
<script src="js/jquery-3.5.1.min.js"></script>
</body>