-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (70 loc) · 2.18 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
<!DOCTYPE html>
<html>
<head>
<title>GPS 1.2 </title>
</head>
<body>
<main>
<header>
<h1>Trees are Amazing!</h1>
<img src="http://www.rainbowspirit.com/wp-content/gallery/landscape/redwoods-old-coast-rd_mg_0874_2_3_0.jpg" alt="Redwoods">
<p> Not only do trees provide much needed shade on a hot sunny day, they also filter our air and provide stability to the earth.</p>
</header>
<article>
<h2>Trees around the United States.</h2>
<p>California.........</p>
<p>New York........... </p>
<p>Texas.............. </p>
<aside>
<p>
Trees differ in the coastal, inland, desert and mountain regions.</p>
</aside>
</article>
</main>
<table border=3>
<tr>
<td colspan= 5 >=================>TREES<================</td>
</tr>
<tr>
<th rowspan="3">TREES</th>
<th> CALIFORNIA</th>
<th colspan=2 > NEW YORK</th>
<th> TEXAS</th>
</tr>
<tr>
<td> REDWOODS </td>
<td colspan=2 > Pine</td>
<td> Anacahuita</td>
</tr>
<tr>
<td> California Sycamore</td>
<td colspan=2 > Spruce</td>
<td> Acacia, Sweet</td>
</tr>
</table>
<section>
<h3>Trees Trees and more Trees...</h3>
<img src="http://public.media.smithsonianmag.com/legacy_blog/04_23_2013_redwoods.jpg" alt="Redwoods">
</section>
<h4>GPS 1.2 ANSWERS</h4>
<P>
<ol>
<li>The purpose of HTML5 semantic tags is to give meaning.</li>
<li>The ones I see most useful would be h1, p, body, header, footer, nav</li>
<li>The browser will display html first on the page.</li>
<li> I learned alot about Sublime in this challenge.....the tabs are tricky and I need a million more hours of practice.</li>
<li> I will create tons of snippets at a later date.</li>
<li> In this challenge SNIPPETS were the most difficult for me. </li>
<li> I can improve your understanding of this concept?....lots of practice and research !! </li>
</ol>
</P>
<nav>
<footer>
<h4> Click here and search for trees by STATE !!</h4>
<ul>
<li><a href="http://www.treesforme.com/">TREES....</a></li>
</ul>
</footer>
</nav>
</body>
</html>