In: Computer Science
<html>
<head>
<title>Nick D'Angelo</title>
</head>
<body>
<h1>This is a header</h1>
<h2>This is a subheader</h2>
<p>The quick <b>brown</b> fox jumped <i>over</i> the lazy dog.</p>
<!--additional paragraph-->
<!--here two words are bold and two are italicized-->
<p>Pack my <b>box</b> with <i>five</i> dozen <b>liquor</b> <i>jugs</i>. Go to <a href='https://www.esu.edu' target="_blank">site</a></p>
<a href="http://ndangelo.com">Nick's Homepage</a>
<a href="http://ndangelo.com" target="_blank">Nick's Homepage</a>
</body>
<html>
Add an Ordered, Unordered, Definition and Nested list to your html file (one for each). Each should be at least 10 lines or more.
Make one list item in each list a hyperlink. Make one bold, and make one italic. Also make a word in each list underlined.
Note: Make one list item in each list a hyperlink. Make one bold, and make one italic. Also make a word in each list underlined. You have to style the in each list item not outside
index.html
<html> <!-- Start of html tag -->
<head> <!-- Start of head tag -->
<title>Nick D'Angelo</title>
</head>
<body> <!-- Start of body tag -->
<h1>This is a header</h1>
<h2>This is a subheader</h2>
<p>The quick <b>brown</b> fox jumped <i>over</i> the lazy dog.</p>
<!--additional paragraph-->
<!--here two words are bold and two are italicized-->
<p>Pack my <b>box</b> with <i>five</i> dozen <b>liquor</b> <i>jugs</i>. Go to <a href='https://www.esu.edu' target="_blank">site</a></p>
<a href="http://ndangelo.com">Nick's Homepage</a>
<a href="http://ndangelo.com" target="_blank">Nick's Homepage</a>
<!--Updated section -->
<!-- a order list with mentioned styles : hyperlink, bold,
italic, underlined -->
<ol>
<li><a href="#">Order 1</a></li>
<li><b> Order 2</b></li>
<li><i> Order 3</i></li>
<li><u> Order 4</u></li>
<li>Order 5</li>
<li>Order 6</li>
<li>Order 7</li>
<li>Order 8</li>
<li>Order 9</li>
<li>Order 10</li>
</ol>
<!-- a unorder list with mentioned styles : hyperlink, bold,
italic, underlined -->
<ul>
<li><a href="#">Unorder 1</a> </li>
<li><b>Unorder 2</b></li>
<li><i>Unorder 3</i></li>
<li><u>Unorder 4</u></li>
<li>Unorder 5</li>
<li>Unorder 6</li>
<li>Unorder 7</li>
<li>Unorder 8</li>
<li>Unorder 9</li>
<li>Unorder 10</li>
</ul>
<!-- a Defination list with mentioned styles : hyperlink,
bold, italic, underlined -->
<dl>
<dt><a href="#">Defination a</a></dt>
<dd>Defination 1</dd>
<dd>Defination 2</dd>
<dd>Defination 3</dd>
<dt><b>Defination b</b></dt>
<dd>Defination 4</dd>
<dd>Defination 5</dd>
<dd>Defination 6</dd>
<dt><i>Defination c</i></dt>
<dd>Defination 7</dd>
<dd>Defination 8</dd>
<dd>Defination 9</dd>
<dt>
<u>Defination d</u>
</dt>
<dd>Defination 10</dd>
</dl>
<!-- a nested list with mentioned styles : hyperlink, bold,
italic, underlined -->
<ol>
<li><a href="#"> Nested a</a><ul>
<li>Nested 1</li>
<li>Nested 2</li>
<li>Nested 3</li>
</ul></li>
<li><b>Nested b</b><ul>
<li>Nested 1</li>
<li>Nested 2</li>
<li>Nested 3</li>
</ul></li>
<li><i>Nested c</i><ul>
<li>Nested 1</li>
<li>Nested 2</li>
<li>Nested 3</li>
</ul></li>
<li><u>Nested d</u>
<ul>
<li>Nested 1</li>
</ul>
</li>
</ol>
</body> <!-- End of body tag-->
</html> <!-- End of html tag-->
Output
Code output