-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (32 loc) · 1.39 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
<!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">Real Estate 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 directory
../ = leave the current folder and go to parent folder -->
<p> Filler text </p>
<!-- promo video -->
<video controls>
<source src="videos/real-estate-video.mp4" type="video/mp4">
<source src="videos/real-estate-video.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>
</html>