-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
106 lines (102 loc) · 4.68 KB
/
about.html
File metadata and controls
106 lines (102 loc) · 4.68 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>KidsFly Home Page</title>
<link href="https://fonts.googleapis.com/css?family=Russo+One|Ubuntu" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/ffb80b2332.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<header>
<h1 class= "co_name">Kidsfly</h1>
<nav>
<a href ="index.html">Home</a>
<a href ="https://kidsfly2020.netlify.com/">Log In</a>
<a href ="https://kidsfly2020.netlify.com/Register">Sign Up</a>
</nav>
</header>
<section class= "about-us-intro">
<h1 class="about">About Us</h1>
<p class= "about_p">
Kidsfly was designed by students at <a href class= "lambda" = "https://lambdaschool.com/"> Lambda School</a>, and is all about making flights for parents with kids who need adult supervision. With Kidsfly, you can rest assured that your child will have an amazing travelling experience.
</p>
</section>
<section class="us-row1">
<div class= "card1">
<img class="profile_pic" src= "Maddy.jpg" alt= "Madeline picture">
<h3>Madeline <br> McIntosh</h3>
<h4>Team Leader</h4>
<h5>WEB 24</h5>
<a href="https://github.com/MsMaddyMac" class="fab fa-github" aria-hidden="true"></a>
</div>
<div class= "card2">
<img class="profile_pic" src= "Cornelius.jpg" alt= "Cornelius picture">
<h3>Cornelius<br>Hardy</h3>
<h4>UX Designer</h4>
<h5>UX 9</h5>
<a href="#" class="fab fa-github" aria-hidden="true"></a>
</div>
<div class= "card3">
<img class="profile_pic" src= "Andrew.jpg" alt= "Andrew picture">
<h3>Andrew <br> Wilson</h3>
<h4>Developer</h4>
<h5>WEB 24</h5>
<a href ="https://github.com/orgs/Kidsfly1/people/easyas123l1" class="fab fa-github" aria-hidden="true"></a>
</div>
</section>
<section class="us-row2">
<div class= "card4">
<img class="profile_pic" src= "Chad.jpg" alt= "Chad picture">
<h3>Chad<br>Snyder</h3>
<h4>Team Leader</h4>
<h5>WEB 24</h5>
<a href ="https://github.com/Lou34964" class="fab fa-github" aria-hidden="true"></a>
</div>
<div class= "card5">
<img class="profile_pic" src= "Jonah.jpg" alt= "Jonah picture">
<h3>Jonah<br>Aitchison</h3>
<h4>Developer</h4>
<h5>Web 25</h5>
<a href ="https://github.com/MarFan" class="fab fa-github" aria-hidden="true"></a>
</div>
<div class= "card6">
<img class="profile_pic" src= "Mandi.jpg" alt= "Mandi picture">
<h3>Mandi<br>Haase</h3>
<h4>Developer</h4>
<h5>WEB 27</h5>
<a href ="https://github.com/haase1020" class="fab fa-github" aria-hidden="true"></a>
</div>
</section>
<form class="contactus">
<span class="title-contactus">
Drop Us A Message
</span>
<div class="name-contact" data-validate = "Name is required">
<input class="input" type="text" name="name" placeholder="Name">
<span class="focus-input"></span>
</div>
<div class="email-contact" data-validate = "Email is required: e@a.z">
<input class="input" type="text" name="email" placeholder="Email Address">
<span class="focus-input"></span>
</div>
<div class="message-contact" data-validate = "Message is required">
<textarea class="input" name="message" placeholder="Write Us A Message"></textarea>
<span class="focus-input"></span>
</div>
<div class="send-button">
<button class="btn">
Send
</button>
</div>
</form>
<footer>
<p class="name_footer">Kidsfly 2020</p>
</footer>
</div><!-- end container -->
</body>