Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Midterm #2

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
96 changes: 96 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Company Name 2</title>

<!-- VIEWPORT FOR MOBILE -->
<meta name="viewport" content="width=device-width, initial-scale=1" />

<!-- MAIN CSS -->
<link href="css/styles.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Place font-awesome.min.css above your styles.css. It is better to place third party styles above your styles.css. This way your styles wont be overridden from the third party styles.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same for index.html.

</head>
<body>

<header class="header">
<div class="container">
<h1 class="logo"><a href="index.html">Company Name</a></h1>
<p class="tagline"><small>A FICTIONAL COMPANY WEBSITE</small></p>



</div>
</header>

<nav class="main-nav container">
<ul>
<li><a href="#">Home
<small>Welcome</small></a>
</li>
<li><a class="active" href="index.html">About
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Home should link to index.html.
About should link to about.html.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same for index.html.

<small>Who We Are</small></a>
</li>
<li><a href="#">Products
<small>What We Sell</small></a>
</li>
<li><a href="#">Contact
<small>How to Get in Touch</small></a>
</li>
</ul>
</nav>

<main>
<div class="container row">
<article class="article">
<h2>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</h2>
<h3>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur non velit quis turpis dictum tincidunt. </h3>
<h4 class="date">Date of Article MM/DD/YYYY</h4>
<h3>Sed ultrices eget lacus eget maximus. Proin vitae porta sapien</h3>
In hac habitasse platea dictumst. Sed semper ex a dignissim fermentum. Suspendisse potenti. Vivamus a tincidunt ante, sit amet fermentum ligula. Suspendisse id maximus libero, eget suscipit purus. In sem odio, blandit id nisl in, tincidunt pellentesque ipsum. Aenean ipsum orci, venenatis sit amet rhoncus et, pellentesque vitae quam. Quisque in sem et lorem dictum tincidunt nec sit amet orci. Aliquam sit amet euismod magna, vel faucibus lorem. Vivamus sit amet metus sem. Ut eleifend nec dolor lacinia porta. Maecenas porttitor aliquam semper. Duis ut euismod metus.
<p>
Sed ultrices eget lacus eget maximus. Proin vitae porta sapien. In hac habitasse platea dictumst. Sed semper ex a dignissim fermentum. Suspendisse potenti. Vivamus a tincidunt ante, sit amet fermentum ligula. Suspendisse id maximus libero, eget suscipit purus. In sem odio, blandit id nisl in, tincidunt pellentesque ipsum. Aenean ipsum orci, venenatis sit amet rhoncus et, pellentesque vitae quam. Quisque in sem et lorem dictum tincidunt nec sit amet orci. Aliquam sit amet euismod magna, vel faucibus lorem. Vivamus sit amet metus sem. Ut eleifend nec dolor lacinia porta. Maecenas porttitor aliquam semper. Duis ut euismod metus.
</p>

</article>
</div>
</main>


<footer class="footer">
<nav class="footer-nav">
<div class="container">

<a href="index.html">Company Name</a>
<p class="copyright">&copy; Company Name</p>

<ul class="row">
<li class="col">
<a href="#">Home</a>
<small>Welcome</small>

</li>
<li class="col">
<a href="#">About</a>
<small>Who We Are</small>
</li>

<li class="col">
<a href="#">Products</a>
<small>What We Sell</small>
</li>

<li class="col">
<a href="#">Contact</a>
<small>How to Get in Touch</small>
</li>
</ul>
</div>
</nav>
</footer>




</body>
</html>
Loading