Adrian
Adrian
Felipe
BSIT-3
1. <!-->
<!DOCTYPE html>
<html>
<body>
<!-- Adrian's Start Comment -->
<p>This is a paragraph.</p>
<!-- Adrian's End Comment -->
</body>
</html>
2. <!DOCTYPE>
<!DOCTYPE html>
<html>
<head>
<title>Myself</title>
</head>
<body>
Adrian B. Felipe, BSIT-3
</body>
</html>
3. <a>
<!DOCTYPE html>
<html>
<body>
<h1>The a element</h1>
<a href="https://www.facebook.com/adrianfelipe27">Follow me!</a>
</body>
</html>
4. <abbr>
<!DOCTYPE html>
<html>
<body>
<h1>adrian abbr element</h1>
<p>The <abbr title="World Health Organization">WHO</abbr> was founded
in 1948.</p>
</body>
</html>
5. <acronym>
<!DOCTYPE html>
<html>
<body>
<h1>Adrian abbr element</h1>
<p>The <abbr title="World Health Organization">WHO</abbr> was founded
in 1948.</p>
</body>
</html>
6. <Address>
<!DOCTYPE html>
<html>
<body>
<h1>The address element</h1>
<address>
Written by <a href="mailto:webmaster@example.com">Adrian</a>.<br>
Visit us at:<br>
Example.com<br>
Sta.Lucia , Guimba , Nueva Ecija<br>
Philiphines
</address>
</body>
</html>
7. <applet>
8. <area>
<!DOCTYPE html>
<html>
<body>
<h1>This is the use of area elements, Adrian knows.</h1>
<p>Click on the computer, the phone, or the cup of coffee to go to a new page
and read more about the topic:</p>
<img src="workplace.jpg" alt="Workplace" usemap="#workmap" width="400"
height="379">
<map name="workmap">
 <area shape="rect" coords="34,44,270,350" alt="Computer"
href="computer.htm">
 <area shape="rect" coords="290,172,333,250" alt="Phone"
href="phone.htm">
<area shape="circle" coords="337,300,44" alt="Cup of coffee"
href="coffee.htm">
</map>
</body>
</html>
9. <article>
<!DOCTYPE html>
<html>
<body>
<article>
 <h2>Raymond Chrome</h2>
 <p>Adrian Chrome is a web browser developed by Google, released in
2008. Chrome is the world's most popular web browser today!</p>
</article>
<article>
 <h2>Adrian Firefox</h2>
 <p>Adrian Firefox is an open-source web browser developed by Mozilla.
Firefox has been the second most popular web browser since January,
2018.</p>
</article>
<article>
 <h2>Adrian Edge</h2>
 <p>Adrian Edge is a web browser developed by Microsoft, released in 2015.
Microsoft Edge replaced Internet Explorer.</p>
</article>
</body>
</html>
10. <aside>
<!DOCTYPE html>
<html>
<body>
<p>Felipe family visited The Epcot center this summer. The weather was
nice, and Epcot was amazing! I had a great summer together with my family!
</p>
<aside>
 <h4>Epcot Center</h4>
 <p>Epcot is Felipe’s theme park at Walt Disney World Resort featuring
exciting attractions, international pavilions, award-winning fireworks and
seasonal special events.</p>
</aside>
</body>
</html>
11. <audio>
<!DOCTYPE html>
<html>
<body>
<audio controls>
 <source src="goat.ogg" type="audio/ogg">
 <source src="goat.mp3" type="audio/mpeg">
 Your browser does not support the audio element.
</audio>
</body>
</html>
12. <b>
<!DOCTYPE html>
<html>
<body>
<h1>The b element</h1>
</body>
</html>
13. <base>
<!DOCTYPE html>
<html>
<head>
 <base href="https://www.w3schools.com/" target="_blank">
</head>
<body>
</body>
</html>
14. <basefont>
<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: courier, serif;
}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
15. <bdi>
<!DOCTYPE html>
<html>
<body>
<p>In the example below, usernames are shown along with the number of
points in a contest. If the bdi element is not supported in the browser, the
username of the Arabic user would confuse the text (the bidirectional
algorithm would put the colon and the number "90" next to the word "User"
rather than next to the word "points").</p>
<ul>
<li>User <bdi>hrefs</bdi>: 60 points</li>
<li>User <bdi>Adrian</bdi>: 80 points</li>
<li>User <bdi><إيان/bdi>: 90 points</li>
</ul>
</body>
</html>
16. <bdo>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
17. <big>
<!DOCTYPE html>
<html>
<head>
<style>
p.ex1 {
  font-size: 20px;
}
p.ex2 {
  font-size: 70px;
}
</style>
</head>
<body>
</body>
</html>
18. <blockquote>
<!DOCTYPE html>
<html>
<body>
<blockquote cite="http://www.Adrian.org/who/index.html">
For 50 years, Adrian has been protecting the future of nature. The world's
leading conservation organization, WWF works in 100 countries and is
supported by 1.2 million members in the United States and close to 5 million
globally.
</blockquote>
</body>
</html>
19. <body>
<!DOCTYPE html>
<html>
<head>
 <title>Title of the document</title>
</head>
<body>
 <h1>This is a heading Adrian knows</h1>
 <p>This is a paragraph. Adrian knows</p>
</body>
</html>
20. <br>
<!DOCTYPE html>
<html>
<body>
<h1>The br element</h1>
</body>
</html>
21. <button>
<!DOCTYPE html>
<html>
<body>
22. <canvas>
<!DOCTYPE html>
<html>
<body>
<script>
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.fillStyle = "#00000";
ctx.fillRect(0, 0, 80, 100);
</script>
</body>
</html>
23. <caption>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>
</head>
<body>
<table>
 <caption>Monthly savings</caption>
 <tr>
  <th>Month</th>
  <th>Savings</th>
 </tr>
 <tr>
  <td>January</td>
  <td>$1900990</td>
 </tr>
 <tr>
   <td>February</td>
   <td>$5890909</td>
 </tr>
</table>
</body>
</html>
24. <center>
<!DOCTYPE html>
<html>
<body>
<center>Adrian knows</center>
</html>
</body>
25. <cite>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
26. <code>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
27. <col>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>
</head>
<body>
<table>
 <colgroup>
   <col span="2" style="background-color:blue">
   <col style="background-color:red">
 </colgroup>
 <tr>
   <th>ISBN</th>
   <th>Title</th>
   <th>Price</th>
 </tr>
 <tr>
   <td>3476896</td>
   <td>Adrian Painting</td>
   <td>$53</td>
 </tr>
 <tr>
   <td>5869207</td>
   <td>My first CSS</td>
   <td>$49</td>
 </tr>
</table>
</body>
</html>
28. <colgroup>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>
</head>
<body>
<table>
 <colgroup>
   <col span="2" style="background-color:green">
   <col style="background-color:pink">
 </colgroup>
 <tr>
   <th>ISBN</th>
   <th>Title</th>
   <th>Price</th>
 </tr>
 <tr>
   <td>3476896</td>
   <td>My first HTML</td>
   <td>$53</td>
 </tr>
 <tr>
   <td>5869207</td>
   <td>My first CSS</td>
   <td>$49</td>
 </tr>
</table>
</body>
</html>
29. <data>
<!DOCTYPE html>
<html>
<body>
<p>The following example displays product names but also associates each
name with a product number:</p>
<ul>
 <li><data value="21053">Anime</data></li>
 <li><data value="21054">Adrian the Hulk</data></li>
 <li><data value="21055">Snack Tomato</data></li>
</ul>
</body>
</html>
30. <datalist>
<!DOCTYPE html>
<html>
<body>
31. <dd>
<!DOCTYPE html>
<html>
<body>
<dl>
 <dt>Coffee</dt>
 <dd>Brown hot drink</dd>
 <dt>Milk</dt>
 <dd>White hot drink</dd>
</dl>
</body>
</html>
32. <del>
<!DOCTYPE html>
<html>
<body>
33. <details>
<!DOCTYPE html>
<html>
<body>
<details>
 <summary>Felipe's Center</summary>
 <p>Felipe is a theme park at Walt Disney World Resort featuring exciting
attractions, international pavilions, award-winning fireworks and seasonal
special events.</p>
</details>
</body>
</html>
34. <dfn>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
35. <dialog>
<!DOCTYPE html>
<html>
<body>
<p>Adrian knows.</p>
<p>Adrian knows.</p>
<p>Adrian knows.</p>
<p>Adrian knows.</p>
</body>
</html>
36. <dir>
<!DOCTYPE html>
<html>
<body>
<ul>
 <li>me</li>
 <li>you</li>
 <li>us</li>
</ul>
</body>
</html>
37. <div>
<!DOCTYPE html>
<html>
<head>
<style>
.AdrianmyDiv {
  border: 5px outset red;
  background-color: lightblue;
  text-align: center;
}
</style>
</head>
<body>
<div class="AdrianmyDiv">
 <h2>This is a heading in a div element</h2>
 <p>This is some text in a div element.</p>
</div>
</body>
</html>
38. <dl>
<!DOCTYPE html>
<html>
<body>
<dl>
 <dt>Coffee</dt>
 <dd>Brown cold drink</dd>
 <dt>Milk</dt>
 <dd>White cold drink</dd>
</dl>
</body>
</html>
39. <dt>
<!DOCTYPE html>
<html>
<body>
<dl>
 <dt>Drinks</dt>
 <dd>Brown hot drink</dd>
 <dt>Milk</dt>
 <dd>White cold drink</dd>
</dl>
</body>
</html>
40. <em>
<!DOCTYPE html>
<html>
<body>
<h1>The em element</h1>
</body>
</html>
41. <embed>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
42. <fieldset>
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
<fieldset>
 <legend>Personal Info:</legend>
 <label for="fname">First name:</label>
 <input type="text" id="fname" name="fname"><br><br>
 <label for="lname">Last name:</label>
 <input type="text" id="lname" name="lname"><br><br>
 <label for="email">Email:</label>
 <input type="email" id="email" name="email"><br><br>
 <label for="birthday">Birthday:</label>
 <input type="date" id="birthday" name="birthday"><br><br>
 <input type="submit" value="Submit">
</fieldset>
</form>
</body>
</html>
43. <figcaption>
<!DOCTYPE html>
<html>
<body>
<figure>
 <img src="pic_Mypic.jpg" alt="Mypic" style="width:100%">
 <figcaption>Fig.1 - Mypic, Puglia, Italy.</figcaption>
</figure>
</body>
</html>
44. <figure>
<!DOCTYPE html>
<html>
<body>
<figure>
 <img src="pic_Lolomo.jpg" alt="Lolomo" style="width:100%">
 <figcaption>Fig.1 - loloko, Puglia, Italy.</figcaption>
</figure>
</body>
</html>
45. <font>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
46. <footer>
<!DOCTYPE html>
<html>
<body>
<footer>
 <p>Author: Adrian Swatshineger<br>
 <a href="mailto:Adrian@example.com">Adrian@example.com</a></p>
</footer>
</body>
</html>
47. <form>
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
 <label for="fname">First name:</label>
 <input type="text" id="fname" name="fname"><br><br>
 <label for="pass">Password:</label>
 <input type="text" id="pass" name="lname"><br><br>
 <input type="submit" value="Submit">
</form>
</body>
</html>
48. <frame>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
49. <frameset>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
</body>
</html>
51. <head>
<!DOCTYPE html>
<html lang="en">
<head>
 <title>Adrian</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
52. <header>
<!DOCTYPE html>
<html>
<body>
<article>
 <header>
  <h1>Adrian lolo</h1>
  <p>Posted by Lexi Lore</p>
  <p>Some additional information here</p>
 </header>
 <p>Lorem Ipsum dolor set amet....</p>
</article>
</body>
</html>
53. <hr>
<!DOCTYPE html>
<html>
<body>
<p>Adrian Felipe a have 6 wives and 6 sports car and 6 crewship and 6
trillion money int the bank </p>
<hr>
<p>Adrian Felipe have 6 wives and 6 sports car and 6 crewship and 6 trillion
money int the bank </p>
<hr>
<p>Adrian Felipe have 6 wives and 6 sports car and 6 crewship and 6 trillion
money int the bank </p>
</body>
</html>
54. <html>
<!DOCTYPE html>
<html lang="en">
<head>
 <title>My Me</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
55. <i>
<!DOCTYPE html>
<html>
<body>
<h1>The i element</h1>
</body>
</html>
56. <iframe>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
57. <img>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
58. <input>
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
 <label for="fname">First name:</label>
 <input type="text" id="fname" name="fname"><br><br>
 <label for="lname">Last name:</label>
 <input type="text" id="lname" name="lname"><br><br>
 <input type="submit" value="Submit">
</form>
</body>
</html>
59. <ins>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
60. <kbd>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
61. <label>
<!DOCTYPE html>
<html>
<body>
<p>Click on one of the text labels to toggle the related radio button:</p>
<form action="/action_page.php">
 <input type="radio" id="html" name="fav_language" value="HTML">
 <label for="html">HTML</label><br>
 <input type="radio" id="css" name="fav_language" value="CSS">
 <label for="css">CSS</label><br>
 <input type="radio" id="javascript" name="fav_language"
value="JavaScript">
 <label for="javascript">JavaScript</label><br><br>
 <input type="submit" value="Submit">
</form>
</body>
</html>
62. <legend>
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
<fieldset>
 <legend>Personal Info:</legend>
 <label for="fname">First name:</label>
 <input type="text" id="fname" name="fname"><br><br>
 <label for="lname">Last name:</label>
 <input type="text" id="lname" name="lname"><br><br>
 <label for="email">Email:</label>
 <input type="email" id="email" name="email"><br><br>
 <label for="birthday">Birthday:</label>
 <input type="date" id="birthday" name="birthday"><br><br>
 <input type="submit" value="Submit">
</fieldset>
</form>
</body>
</html>
63. <li>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
64. <link>
<!DOCTYPE html>
<html>
<head>
 <link rel="stylesheet" href="Mystyles.css">
</head>
<body>
<h1>Hello World!</h1>
<h2>I am me</h2>
<p>Me too!</p>
</body>
</html>
65. <main>
<!DOCTYPE html>
<html>
<body>
<main>
 <h1>Most Popular Browsers</h1>
 <p>Chrome, Firefox, and Edge are the most used browsers today.</p>
 <article>
  <h2>Google Chrome</h2>
  <p>Google Chrome is a web browser developed by Google, released in
2008. Chrome is the world's most popular web browser today!</p>
 </article>
 <article>
   <h2>Mozilla Firefox</h2>
   <p>Mozilla Firefox is an open-source web browser developed by Mozilla.
Firefox has been the second most popular web browser since January,
2018.</p>
 </article>
 <article>
  <h2>Microsoft Edge</h2>
  <p>Microsoft Edge is a web browser developed by Microsoft, released in
2015. Microsoft Edge replaced Internet Explorer.</p>
 </article>
</main>
</body>
</html>
66. <map>
<!DOCTYPE html>
<html>
<body>
<p>Click on the computer, the phone, or the cup of coffee to go to a new page
and read more about the topic:</p>
<map name="workmap">
 <area shape="rect" coords="34,44,270,350" alt="Computer"
href="computer.htm">
 <area shape="rect" coords="290,172,333,250" alt="Phone"
href="phone.htm">
 <area shape="circle" coords="337,300,44" alt="Cup of coffee"
href="coffee.htm">
</map>
</body>
</html>
67. <mark>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
68. <meta>
<!DOCTYPE html>
<html>
<head>
 <meta charset="UTF-8">
 <meta name="description" content="Free Web tutorials">
 <meta name="keywords" content="HTML,CSS,XML,JavaScript">
 <meta name="author" content="John Doe">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
</body>
</html>
69. <meter>
<!DOCTYPE html>
<html>
<body>
<label for="Anime">Anime:</label>
<meter id="Anime" value="2" min="0" max="10">2 out of 10</meter><br>
<label for="Anime">Anime:</label>
<meter id="Anime" value="0.6">60%</meter>
</body>
</html>
70. <nav>
<!DOCTYPE html>
<html>
<body>
<nav>
<a href="/html/">MyHTML</a> |
<a href="/css/">CSS</a> |
<a href="/js/">JavaScript</a> |
<a href="/python/">Python</a>
</nav>
</body>
</html>
71. <noframes>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
72. <noscript>
<!DOCTYPE html>
<html>
<body>
<p>A browser with HTML disabled will show the text inside the noscript
element ("Hello World!" will not be displayed).</p>
<script>
document.write("Hello World!")
</script>
<noscript>Sorry, your browser does not support HTML!</noscript>
</body>
</html>
73. <object>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
74. <ol>
<!DOCTYPE html>
<html>
<body>
<h1>The ol element</h1>
<ol>
 <li>Coffee</li>
 <li>Tea</li>
 <li>or Me</li>
</ol>
<ol start="50">
 <li>Coffee</li>
 <li>Tea</li>
 <li>or Me</li>
</ol>
</body>
</html>
75. <optgroup>
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
 <label for="cars">Choose a car:</label>
 <select name="cars" id="cars">
   <optgroup label="Swedish Cars">
    <option value="volvo">Volvo</option>
    <option value="Ferari">Ferari</option>
   </optgroup>
   <optgroup label="German Cars">
    <option value="mercedes">Mercedes</option>
    <option value="audi">Audi</option>
   </optgroup>
 </select>
 <br><br>
 <input type="submit" value="Submit">
</form>
</body>
</html>
76. <option>
<!DOCTYPE html>
<html>
<body>
<select id="cars">
 <option value="Ferari">Ferari</option>
 <option value="saab">Saab</option>
 <option value="audi">Audi</option>
</select>
</body>
</html>
77. <output>
<!DOCTYPE html>
<html>
<body>
<form oninput="x.value=parseInt(a.value)+parseInt(b.value)">
<input type="range" id="a" value="50">
+<input type="number" id="b" value="25">
=<output name="x" for="a b"></output>
</form>
</body>
</html>
78. <p>
<!DOCTYPE html>
<html>
<body>
<h1>The p element</h1>
<p>MY Me</p>
</body>
</html>
79. <param>
<!DOCTYPE html>
<html>
<body>
<object data="lion.wav">
<param name="autoplay" value="true">
</object>
</body>
</html>
80. <picture>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<picture>
 <source media="(min-width:650px)" srcset="img_pink_flowers.jpg">
 <source media="(min-width:465px)" srcset="img_white_flower.jpg">
 <img src="img_orange_flowers.jpg" alt="Flowers" style="width:auto;">
</picture>
</body>
</html>
81. <pre>
<!DOCTYPE html>
<html>
<body>
<pre>
Ikaw at ako ang mandirigma
sa ngalan ng kapayapaaan
</pre>
</body>
</html>
82. <progress>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
83. <q>
<!DOCTYPE html>
<html>
<body>
<h1>The q element</h1>
</body>
</html>
84. <rp>
<!DOCTYPE html>
<html>
<body>
<h1>The rp element</h1>
<ruby>
漢 <rp>(</rp><rt>ㄏㄢˋ</rt><rp>)</rp>
</ruby>
</body>
</html>
85. <rt>
<!DOCTYPE html>
<html>
<body>
<ruby>
漢 <rt> ㄏㄢˋ </rt>
</ruby>
</body>
</html>
86. <ruby>
<!DOCTYPE html>
<html>
<body>
<ruby>
漢 <rt> ㄏㄢˋ </rt>
</ruby>
</body>
</html>
87. <s>
<!DOCTYPE html>
<html>
<body>
<h1>The s element</h1>
</body>
</html>
88. <samp>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
89. <script>
<!DOCTYPE html>
<html>
<body>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = "Hello World";
</script>
</body>
</html>
90. <section>
<!DOCTYPE html>
<html>
<body>
<section>
 <h2>MYMY History</h2>
 <p>The MYMY is an international organization working on issues regarding
the conservation, research and restoration of the environment, formerly
named the MYMY. </p>
</section>
<section>
 <h2>MYMY Knowledge</h2>
 <p>The MYMY is an international organization working on issues regarding
the conservation, research and restoration of the environment, formerly
named the MYMY. </p>
</section>
</body>
</html>
91. <select>
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
 <label for="cars">Choose a car:</label>
 <select name="cars" id="cars">
   <option value="volvo">Bugati</option>
   <option value="saab">Ferari</option>
   <option value="opel">Honda</option>
   <option value="audi">Audi</option>
 </select>
 <br><br>
 <input type="submit" value="Submit">
</form>
</body>
</html>
92. <small>
<!DOCTYPE html>
<html>
<body>
<p>Raymond</p>
<p><small>Adrian</small></p>
</body>
</html>
93. <source>
<!DOCTYPE html>
<html>
<body>
<audio controls>
 <source src="Dog.ogg" type="audio/ogg">
 <source src="Dog.mp3" type="audio/mpeg">
 Your browser does not support the audio element.
</audio>
</body>
</html>
94. <span>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
95. <strike>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
96. <strong>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
97. <style>
<!DOCTYPE html>
<html>
<head>
<style>
h1 {color:gold;}
p {color:silver;}
</style>
</head>
<body>
<h1>Me</h1>
<p>You</p>
</body>
</html>
98. <sub>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
99. <summary>
<!DOCTYPE html>
<html>
<body>
<details>
 <summary>Adrian's Journey</summary>
 <p>Once a fun a time , the end</p>
</details>
</body>
</html>
100. <sup>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
101. <svg>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
102. <table>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>
</head>
<body>
<table>
 <tr>
  <th>Month</th>
  <th>Savings</th>
 </tr>
 <tr>
  <td>January</td>
   <td>$100</td>
 </tr>
 <tr>
   <td>February</td>
   <td>$80</td>
 </tr>
</table>
</body>
</html>
103. <tbody>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>
</head>
<body>
<table>
 <thead>
   <tr>
    <th>Month</th>
    <th>Savings</th>
   </tr>
 </thead>
 <tbody>
   <tr>
    <td>December</td>
    <td>$100</td>
   </tr>
   <tr>
    <td>November</td>
    <td>$80</td>
   </tr>
 </tbody>
 <tfoot>
   <tr>
    <td>Sum</td>
    <td>$180</td>
   </tr>
 </tfoot>
</table>
</body>
</html>
104. <td>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>
</head>
<body>
<h1>The td element</h1>
<table>
 <tr>
   <td>Cell A</td>
   <td>Cell B</td>
 </tr>
 <tr>
   <td>Cell C</td>
   <td>Cell D</td>
 </tr>
</table>
</body>
</html>
105. <template>
<!DOCTYPE html>
<html>
<body>
<p>Click the button below to display the hidden content from the template
element.</p>
<template>
 <h2>Adrian’s pict</h2>
 <img src="img_Adrian's pict.jpg" width="214" height="204">
</template>
<script>
function showContent() {
  var temp = document.getElementsByTagName("template")[0];
  var clon = temp.content.cloneNode(true);
  document.body.appendChild(clon);
}
</script>
</body>
</html>
106. <textarea>
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
 <p><label for="Adrian">Review of W3Schools:</label></p>
 <textarea id="Raymond" name="\Adrian" rows="4" cols="50">At Adrian.com
you will learn how to make a website. They offer free tutorials in all web
development technologies.</textarea>
 <br>
 <input type="submit" value="Submit">
</form>
<p>Click the "Submit" button and the form-data will be sent to a page on the
server called "action_page.php".</p>
</body>
</html>
107. <tfoot>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>
</head>
<body>
<h1>The thead, tbody, and tfoot elements</h1>
<table>
 <thead>
   <tr>
    <th>Month</th>
    <th>Savings</th>
   </tr>
 </thead>
 <tbody>
   <tr>
    <td>March</td>
    <td>$100</td>
   </tr>
   <tr>
    <td>February</td>
    <td>$80</td>
   </tr>
 </tbody>
 <tfoot>
   <tr>
    <td>Sum</td>
    <td>$180</td>
   </tr>
 </tfoot>
</table>
</body>
</html>
108. <th>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>
</head>
<body>
<h1>The th element</h1>
<table>
 <tr>
  <th>Month</th>
   <th>Expenses</th>
 </tr>
 <tr>
   <td>January</td>
   <td>$100</td>
 </tr>
 <tr>
   <td>February</td>
   <td>$80</td>
 </tr>
</table>
</body>
</html>
109. <thread>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>
</head>
<body>
<table>
 <thead>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
 </thead>
 <tbody>
  <tr>
    <td>January</td>
    <td>$1000</td>
  </tr>
  <tr>
    <td>March</td>
    <td>$80</td>
  </tr>
 </tbody>
 <tfoot>
  <tr>
    <td>Sum</td>
    <td>$1080</td>
   </tr>
 </tfoot>
</table>
</body>
</html>
110. <time
<!DOCTYPE html>
<html>
<body>
</body>
</html>
111. <title>
<!DOCTYPE html>
<html lang="en">
<head>
 <title>Adrian's File</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
112. <tr>
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
 border: 1px solid black;
}
</style>
</head>
<body>
<h1>The tr element</h1>
<table>
 <tr>
   <th>Month</th>
   <th>Savings</th>
 </tr>
 <tr>
   <td>January</td>
   <td>$100</td>
 </tr>
 <tr>
   <td>February</td>
   <td>$80</td>
 </tr>
</table>
</body>
</html>
113. <track>
>
an">
</video>
114. <tt>
<!DOCTYPE html>
<html>
<body>
<p>This text is normal.</p>
<p style="font-family:'Lucida Console', monospace">This text is monospace
text.</p>
</body>
</html>
115. <u>
<!DOCTYPE html>
<html>
<body>
<h1>The u element</h1>
</body>
</html>
116. <ul>
<!DOCTYPE html>
<html>
<body>
<h1>The ul element</h1>
<ul>
 <li>Coffee</li>
 <li>Tea</li>
 <li>or me</li>
</ul>
</body>
</html>
117. <var>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
118. <video>
<!DOCTYPE html>
<html>
<body>
</body>
</html>
119. <wbr>
<!DOCTYPE html>
<html>
<body>
<p>Try to shrink the browser window, to view how the very long word in
the paragraph below will break:</p>
<p>This is a
veryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryvery<
wbr>goodandilikeitalot<wbr>byAdrian.</p>
</body>
</html>