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
120 changes: 62 additions & 58 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,66 +1,70 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Exceptional Realty Group - Luxury Homes - About</title>
<!-- Don't forget to link your CSS file! -->
</head>
<body>
<header>
<!-- logo -->
<h1>Exceptional Realty Group</h1>

<nav>
<a href="index.html">About</a> <a href="new-properties.html">New Properties</a> <a href="real-estate-listings.html">Listings</a> <a href="market-report.html">Market Report</a> <a href="contact.html">Contact</a> <a href="http://hud.gov" target="_blank">H.U.D.</a>
</nav>
</header>
<head>
<meta charset="UTF-8">
<title>Exceptional Realty Group - Luxury Homes - About</title>
<!-- Don't forget to link your CSS file! -->
<link rel="stylesheet" href="./style.css">
</head>

<section id="featured-property">
<figure>
<img src="images/intro-pic.jpg" alt="A beautiful living room." title="Welcome to Exceptional Realty Group">
<figcaption>345 Carl Street Apt 12, Carrol Rd. Brooklyn, NY - Photo by Denise Richards.</figcaption>
</figure>
<body>
<header>
<!-- logo -->
<h1>Exceptional Realty Group</h1>

<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae, perferendis nisi nihil debitis aspernatur doloribus quam eveniet quibusdam tempora esse! Repudiandae, assumenda, debitis doloribus ea eius ab at quae totam. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, inventore aliquid ipsam debitis nulla vitae omnis nemo quisquam? Obcaecati dolor ipsum distinctio reprehenderit aliquid autem ea vel provident voluptas nisi.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ipsa, natus, nobis, tempore recusandae culpa deleniti dignissimos laborum perspiciatis exercitationem obcaecati dolores unde eveniet eius debitis perferendis provident porro. Ipsum, placeat.</p>
</section>
<nav>
<a href="index.html">About</a> <a href="new-properties.html">New Properties</a> <a href="real-estate-listings.html">Listings</a> <a href="market-report.html">Market Report</a> <a href="contact.html">Contact</a> <a href="http://hud.gov" target="_blank">H.U.D.</a>
</nav>
</header>

<section id="details">
<div>
<h3>Contact</h3>
<p>
<a href="mailto:[email protected]">[email protected]</a><br>
+1 710 555 1234<br>
@fakeRealty
</p>
</div>

<div>
<h3>Correspondence</h3>
<p>
Exceptional Realty<br>
P.O. Box 5555<br>
Brooklyn, NY 11201
</p>
</div>
<section id="featured-property">
<figure>
<img src="images/intro-pic.jpg" alt="A beautiful living room." title="Welcome to Exceptional Realty Group">
<figcaption>345 Carl Street Apt 12, Carrol Rd. Brooklyn, NY - Photo by Denise Richards.</figcaption>
</figure>

<div>
<h3>Links</h3>
<p>
<a href="#" target="_blank">Home Restoration</a><br>
<a href="#" target="_blank">Affordable Mortgages</a><br>
<a href="#" target="_blank">Professional Moving Crew</a>
</p>
</div>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quae, perferendis nisi nihil debitis aspernatur doloribus quam eveniet quibusdam tempora esse! Repudiandae, assumenda, debitis doloribus ea eius ab at quae totam. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, inventore aliquid ipsam debitis nulla vitae omnis nemo quisquam? Obcaecati dolor ipsum distinctio reprehenderit aliquid autem ea vel provident voluptas nisi.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ipsa, natus, nobis, tempore recusandae culpa deleniti dignissimos laborum perspiciatis exercitationem obcaecati dolores unde eveniet eius debitis perferendis provident porro. Ipsum, placeat.</p>
</section>

<div>
<h3>Follow</h3>
<p>
<a href="#" target="_blank">YouTube</a><br>
<a href="#" target="_blank">Facebook</a><br>
<a href="#" target="_blank">Twitter</a>
</p>
</div>
</section>
</body>
</html>
<section id="details">
<div>
<h3>Contact</h3>
<p>
<a href="mailto:[email protected]">[email protected]</a><br>
+1 710 555 1234<br>
@fakeRealty
</p>
</div>

<div>
<h3>Correspondence</h3>
<p>
Exceptional Realty<br>
P.O. Box 5555<br>
Brooklyn, NY 11201
</p>
</div>

<div>
<h3>Links</h3>
<p>
<a href="#" target="_blank">Home Restoration</a><br>
<a href="#" target="_blank">Affordable Mortgages</a><br>
<a href="#" target="_blank">Professional Moving Crew</a>
</p>
</div>

<div>
<h3>Follow</h3>
<p>
<a href="#" target="_blank">YouTube</a><br>
<a href="#" target="_blank">Facebook</a><br>
<a href="#" target="_blank">Twitter</a>
</p>
</div>
</section>
</body>

</html>
31 changes: 31 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,34 @@ body {
height: 100%;
margin: 0;
}

h1,
#featured-property,
nav,
#featured-property p,
#details div {
text-align: center;
}

nav > a {
background: grey;
padding-left: 10px;
padding-right: 10px;
}

figcaption {
font-size: x-small;
}

#featured-property p {
width: 800px;
margin: auto;
padding: 10px;
}

#details div {
float: left;
width: 23%;
background: green;
padding: 1%;
}