-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML
More file actions
37 lines (30 loc) · 1.54 KB
/
HTML
File metadata and controls
37 lines (30 loc) · 1.54 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Telephone, emailand directions
for the Barnes and Noble Bookstore, Temecula, California, United States"/>
<title>HTML5 iframe, meta, div, span, id, class, etc Coding</title>
</head>
<body>
<div id="header">
<h1> Barnes and Noble Bookstore in Temecula CA</div>
<ul>
<li><a href="http://stores.barnesandnoble.com/store/2991.html">Bookstore </a></li>
<li class="Toys and Games">
<a href="http://www.barnesandnoble.com/b/toys-games/_/N-8qf">Toys and Games</a></li>
<li><a href="http://www.barnesandnoble.com/b/the-vinyl-store/_/N-1p2a">The Vinyl Store</a></li>
<li><a href="http://www.barnesandnoble.com/h/cafe">Barnes and Noble Starbucks Cafe in Bookstore</a></li>
<li><a href="https://help.barnesandnoble.com/">Help</a></li>
</ul>
</div>
<!-- This is the end of the header section within the body -->
<div id="content"><!-- main content section within the body begins here -->
<p><strong>ADDRESS</strong> 40570 Winchester Rd. Temecula, CA 92591 USA</P>
<p><span class="contact"><strong>TELEPHONE</strong></span> 951-296-0253</p>
<p>© 2016 Fictional Webmaster Copyright Stamp</p>
<!-- NOTE - The Scrolling = "0" tag from HTML4 for use in iframe sctructure not included here becuase it is not function in HTML5 -->
<iframe width="425" height="275" frameborder="0" marginheight="0" marginwidth="0"
src="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=barnes+and+noble+winchester+rd+temecula&output=embed">
</div><!-- end content section within body -->
</body>
</html>