-
Notifications
You must be signed in to change notification settings - Fork 0
/
our-team.html
141 lines (130 loc) · 4.1 KB
/
our-team.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
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="author" content="Divya Nair" />
<!-- Title for naming tab and bookmark -->
<title>Droom | Professionals Matcher</title>
<!-- Description to be displayed on web browser search result -->
<meta name="description" content="Droom | Professionals Matcher." />
<!-- Media Query -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- CSS -->
<link rel="stylesheet" href="styles/css/index.css" />
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto|Yellowtail"
rel="stylesheet"
/>
<!-- Social Media Logos -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous"
/>
<!-- JS scripts -->
<script src="scripts/button.js" async></script>
<script src="scripts/footer.js" async></script>
<!-- Favicon -->
<link rel="icon" href="images/favicon.ico">
</head>
<body>
<!-- Banner and CTA -->
<header class="team-header">
<h1 id="logo">
<a href="index.html">Droom</a>
</h1>
<!--
<button
onclick="location.href='https://keen-hodgkin-2ca05d.netlify.com/login/form'"
type="button"
class="login"
>
Log In
</button>
-->
<button type="button" class="login">
Log In
</button>
</header>
<!-- Our Team -->
<section class="our-team">
<h1>Meet the team</h1>
<p>Droom is built with love by a team of remote developers in the U.S.</p>
<section class="team-cards">
<section>
<img src="images/divya.jpg" alt="Photo of Divya Nair" />
<p>Divya Nair</p>
<p class="title">UI Developer</p>
<a href="https://github.com/dsnair">
<i class="fab fa-github"></i>
</a>
</section>
<section>
<img src="images/jeremiah.jpg" alt="Photo of Jeremiah Tenbrink" />
<p>Jeremiah Tenbrink</p>
<p class="title">Frontend Developer</p>
<a href="https://github.com/jeremiahtenbrink">
<i class="fab fa-github"></i>
</a>
</section>
<section>
<img src="images/timothy.jpg" alt="Photo of Timothy Shores" />
<p>Timothy Shores</p>
<p class="title">Frontend Developer</p>
<a href="https://github.com/timothyshores">
<i class="fab fa-github"></i>
</a>
</section>
<section>
<img src="images/michael.png" alt="Photo of Michael Landers" />
<p>Michael Landers</p>
<p class="title">Backend Developer</p>
<a href="https://github.com/mlanders">
<i class="fab fa-github"></i>
</a>
</section>
</section>
</section>
<!-- Footer -->
<footer>
<section class="footer-cards">
<section>
<!-- <h1>Connect</h1> -->
<h1></h1>
<div class="social-media">
<a href="https://github.com/lambda-build-week-droom">
<i class="fab fa-github"></i>
</a>
<a><i class="fab fa-twitter"></i></a>
<a><i class="fab fa-medium-m"></i></a>
<a><i class="fab fa-facebook-f"></i></a>
</div>
</section>
<section>
<!-- <h1>Account</h1> -->
<h1></h1>
<a href="https://keen-hodgkin-2ca05d.netlify.com/login/form">
Log In
</a>
<a href="https://keen-hodgkin-2ca05d.netlify.com/login/registration">
Sign Up
</a>
</section>
<section>
<!-- <h1>Company</h1> -->
<h1></h1>
<a href="our-team.html">Our Team</a>
<a>Support</a>
</section>
<section>
<!-- <h1>Terms</h1> -->
<h1></h1>
<a>Legal</a>
<a>Privacy</a>
</section>
</section>
<p>© Droom, Inc.</p>
</footer>
</body>
</html>