-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (64 loc) · 2.69 KB
/
index.html
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
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<!-- This is a comment. I can see it in the code, but it will not appear in the broswer. -->
<!--
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>
<header>
<h1>Exceptional </h1>
<h2> Realty Group </h2>
<!-- links -->
<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">
<figcaption>345 Carl Street Apt 12, Carrol Rd. Brooklyn, NY - Photo by Denise Richards</figcaption>
</figure>
<!--
foldername/ = go inside folder
filename = use file in the current directory
../ = leave current folder and go up to the parent directory
-->
<p>Lorem ipsum dolor sit amet, consectetur adipisicing 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. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet,<br> consectetur adipisicing 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. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</section>
<section id="promotional">
<!-- promo vidoe -->
<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="http://browsehappy.com" target="_blank">Please upgrade your browser</a>
</video>
<figcaption>Exceptional Realty Group Promotional Video - Source: archive.org</figcaption>
</figure>
</section>
<footer>
© 2015 Exceptional Realty. All Rights Reserved. All Wrongs Reversed.
</footer>
</body>
</html>