Computer Science, asked by greatGRISHM, 4 months ago

Write the HTML code for the given web page. The instructions are been given.

Instructions:
1. You have to use font color and underline the text JAMES MADISON UNIVERSITY
2. Use horizontal rule tag for the straight lines
3. Ordered list is given
4. Use anchor tag for the email link​

Answers

Answered by sangeetabhanwar
0

Answer:

<!DOCTYPE html>

<html>

<body>

<h2>You have to use font color and underline the text JAMES MADISON UNIVERSITY</h2>

<p><u style="color:Tomato;">JAMES MADISON UNIVERSITY</u></p>

<h2>HR horozontal rule filter</h2>

<p>HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page, and consists of a series of elements. HTML elements tell the browser how to display the content.</p>

<hr>

<p>CSS is a language that describes how HTML elements are to be displayed on screen, paper, or in other media</p>

<h2>ordered list is given</h2>

<p>

<ol>

   <li>Coffee</li>

   <li>Tea</li>

   <li>Milk</li>

</ol>

</p>

<h2>anchor tag is given</h2>

<a  href="mailto:[email protected]">Send email</a></a>

</body>

</html>

Explanation:

Similar questions