-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.html
More file actions
72 lines (71 loc) · 2.16 KB
/
aboutus.html
File metadata and controls
72 lines (71 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>
How-To
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/index.css" />
</head>
<header>
<img src="images/logo.png">
<nav>
<a href="index.html">Home</a>
<a href="https://front-end-ruddy.now.sh/">Sign Up</a>
<a href="aboutus.html">About Us</a>
<a href="contactus.html">Contact</a>
</nav>
</header>
<body>
<section class="first2">
<div class="firstProfile">
<h1>Cole.W</h1>
<h5>Web UI</h5>
<img class="headshot" src="images/cole.jpg">
</div>
<div class="secondProfile">
<h1>Tharshan.K</h1>
<h5>Web UI</h5>
<img class="headshot" src="images/tharshan.jpg">
</div>
</section>
<section class="first2">
<div class="firstProfile">
<h1>Alex.Martinez</h1>
<h5>React I</h5>
<img class="headshot" src="images/alexmartinez.jpg">
</div>
<div class="secondProfile">
<h1>Alex.Miller</h1>
<h5>React II</h5>
<img class="headshot" src="images/alexmiller.jpg">
</div>
</section>
<section class="first2">
<div class="firstProfile">
<h1>Edwin.C</h1>
<h5>Back-End</h5>
<img class="headshot" src="images/edwin.jpg">
</div>
<div class="secondProfile">
<h1>Cody.H</h1>
<h5>Back-End</h5>
<img class="headshot" src="images/cody.jpg">
</div>
</section>
<section class="second1">
<h1>Katrina.R</h1>
<h5>Product Lead</h5>
<img class="headshot2" src="images/katrina.jpg">
</section>
</body>
<footer>
<button onclick="window.location.href = 'https://front-end-ruddy.now.sh/';">Sign Up!</button></a>
<p>Web Design: Tharshan and Cole<br>Copyright 2020</p>
</footer>
</html>