forked from DonnyAndre29/Neighbor-Share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
143 lines (133 loc) · 5.36 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
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Link to Google Material Symbols API -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<!-- Link to Google Fonts API - url can be altered to include more fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Cookie&family=Kalnia:wght@500&family=Poppins:wght@200&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/css/foundation.css">
<link rel="stylesheet" href="assets/css/app.css">
<link rel="stylesheet" href="assets/css/style.css" type="text/css">
<title>Neighbor Share</title>
</head>
<body>
<header class="subnav-hero-section" id="top">
<img src="./assets/Images/Logo.png" width="75px" height="75px">
<h1 class="subnav-hero-headline"> Neighbor Share</h1>
<div>by <span id="logo"><sub>8</sub>roup ei<sub>8</sub>ht</span></div>
<ul class="subnav-hero-subnav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="index.html#faq">FAQ</a></li>
<li><a href="index.html#review">Reviews</a></li>
<li><a href="create.html">Get Started</a></li>
</ul>
</header>
<div class="grid-container">
<div class="cell">
<section class="content">
<h3>Welcome to Neighbor-Share, a community platform built by coding students. <br> Our goal is to connect and
create
relationships within community by lending and borrowing items.<br>
Start sharing with your neighbors today and make your community even stronger!</h3>
</section>
</div>
<div class="grid-x grid-margin-x small-up-2 medium-up-4">
<div class="cell">
<div class="card-user-container">
<!-- User card #1 -->
<!--card's image-->
<div class="card-user-avatar">
<img src="https://github.com/benitaisaac.png" alt="Profile picture of Benita Isaac" class="user-image">
</div>
<!--user info name, bio and location-->
<div class="card-user-bio">
<h4>Benita Isaac</h4>
<p>GitHub: <a href="https://github.com/benitaisaac">benitaisaac</a></p>
</div>
<!--card's follow button-->
<div class="card-user-button">
<a href="https://github.com/benitaisaac" class="button">FOLLOW</a>
</div>
</div>
</div>
<div class="cell">
<div class="card-user-container">
<!-- User card #2 -->
<div class="card-user-avatar">
<img src="https://github.com/DonnyAndre29.png" alt="Profile picture of Don Andre Clark" class="user-image">
</div>
<div class="card-user-bio">
<h4>Don Andre Clark</h4>
<p>GitHub: <a href="https://github.com/DonnyAndre29">DonnyAndre29</a></p>
</div>
<div class="card-user-button">
<a href="https://github.com/DonnyAndre29" class="button">FOLLOW</a>
</div>
</div>
</div>
<div class="cell">
<div class="card-user-container">
<!-- User card #3 -->
<!--card's image-->
<div class="card-user-avatar">
<img src="https://github.com/jhill1230.png" alt="Profile picture of Justin Hill" class="user-image">
</div>
<!--user info name, bio and location-->
<div class="card-user-bio">
<h4>Justin Hill</h4>
<p>GitHub: <a href="https://github.com/jhill1230">jhill1230</a></p>
</div>
<!--card's follow button-->
<div class="card-user-button">
<a href="https://github.com/jhill1230" class="button">FOLLOW</a>
</div>
</div>
</div>
<div class="cell">
<div class="card-user-container">
<!-- User card example #4 -->
<!--card's image-->
<div class="card-user-avatar">
<img src="https://github.com/kerilsen.png" alt="" class="user-image">
</div>
<!--user info name, bio and location-->
<div class="card-user-bio">
<h4>Keri Sen</h4>
<p>GitHub: <a href="https://github.com/kerilsen">kerilsen</a></p>
</div>
<!--card's follow button-->
<div class="card-user-button">
<a href="https://github.com/kerilsen" class="button">FOLLOW</a>
</div>
</div>
</div>
</div>
</div>
<!-- This will take users back to the top -->
<footer class="social-footer">
<div class="social-footer-left">
<p>Created by <span id="logo"><sub>8</sub>roup ei<sub>8</sub>ht</span>
</div>
<div class="social-footer-icons">
<ul class="menu simple">
<li><a href="about.html">about us</a></li>
<li><a href="#top">back to top</a></li>
</ul>
</div>
</footer>
<script src="assets/js/vendor/jquery.js"></script>
<script src="assets/js/vendor/what-input.js"></script>
<script src="assets/js/vendor/foundation.js"></script>
<script src="assets/js/app.js"></script>
<!-- Our javascript file -->
<script src="assets/js/script.js"></script>
</body>
</html>