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

again #218

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

again #218

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
96 changes: 54 additions & 42 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,43 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- This is a comment. I can see it in the code, but it will not appear in the browser. -->

<!--
The head section contains info for search engines and the browser and is not seen by site visitors.
-->

<meta charset="UTF-8">
<title>Exceptional Realty Group - Luxury Homes - About</title>
</head>
<body>
<!-- The body is the entire viewable area of the web page. For example we can see text, links, images, and media. -->

<h1>Exceptional</h1>
<h2>Realty Group</h2>

<!-- links -->
<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>

<img src="images/intro-pic.jpg" alt="A beautiful living room." title="Welcome to Exceptional Realty Group">

<!--
foldername/ = go inside the folder.
filename = use a file in the current folder.
../ = leavethe current folder and go up to parent folder.
-->

<p>Lorem ipsum dolor sit amet,<br> 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>

<!-- promo video -->

<video controls>
<source src="videos/real-estate.mp4" type="video/mp4">
<source src="videos/real-estate.ogv" type="video/ogg">
Your browser does not support HTML5 video. <a href="http://browsehappy.com" target="_blank">Please upgrade your browser</a>.
</video>

</body>
<!DOCTYPE html>
<html lang="en">

<head>
<title>Exceptional Realty Group = Luxury Homes - About</title>
</head>

<body>

<header>
<h1>Exceptional</h1>
<h2>Realty Group</h2>
<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="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>

<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</p>
<p>
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</section>


<section id="promotional">
<!-- promo video -->
<figure>
<video controls>
<source src="videos/real-estate.mp4" type="video/mp4">
<source src="videos/real-estate.ogv" type="video/ogg">
Your browser does not support HTML5 video. <a href="https://browsehappy.com/" target="_blank">Please upgrade your browser</a>
</video>
<figcaption>Excpetional Realty Group Promotional Video - Source: archive.org</figcaption>
</figure>
</section>

<footer>
&copy; 2014 Exceptional Realty Group. All Rights Reserved.
</footer>
</body>

</html>