Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 0 additions & 52 deletions Homepage.html

This file was deleted.

68 changes: 53 additions & 15 deletions aboutus.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,60 @@
/>
<link rel="stylesheet" href="css/index.css" />
</head>

<header>
<img src="images/logo.png">
<nav>
<a href="#">Home</a>
<a href="#">Sign Up</a>
<a href="#">About Us</a>
<a href="#">Contact</a>
</nav>
<img src="images/logo.png" />
<nav>
<a href="index.html">Home</a>
<a href="#">Sign Up</a>
<a href="aboutus.html">About Us</a>
<a href="#">Contact</a>
</nav>
</header>
<body>


<footer>
<button>Sign Up!</button>
<p>Web Design: Tharshan and Cole<br>Copyright 2020</p>
</footer>
<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>
</html>
<footer>
<button>Sign Up!</button>
<p>Web Design: Tharshan and Cole<br />Copyright 2020</p>
</footer>
</html>
32 changes: 32 additions & 0 deletions css/aboutus.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
h1 {
font-size: 3rem;
}
h5 {
font-size: 1.5rem;
}
.headshot {
width: 25%;
}
.first2 {
display: flex;
flex-direction: row;
justify-content: space-evenly;
border-bottom: 2px dashed;
}
.firstProfile {
display: flex;
flex-direction: column;
align-items: center;
}
.secondProfile {
display: flex;
flex-direction: column;
align-items: center;
}
.second1 {
display: flex;
flex-direction: column;
align-items: center;
width: 45%;
margin-left: 27.5%;
}
Loading