Computer Science, asked by barath37, 1 year ago

write HTML code to generate web page as shown below having list in the style given style career option medical medicine Research Engineering marketing

Answers

Answered by ckroyofficial
7

<UL>

<li>career option</li>

<li>medical medicine research</li>

<li>engineering marketing</li>

Answered by franktheruler
5

Answer:

<html>

<head>

<title> html program </title>

</head>

<body>

<p> choose your career option </p>

<ul>

<li>  Medical </li>

<li>  Medicine </li>

<li>  Research  </li>

<li>  Engineering </li>

</ul>

</body>

</html>  

Explanation:

Html (Hypertext Markup language) is a predominant markup language. HTML is the standard markup language for Web pages. HTML elements are the building blocks of HTML pages.

In html, < ol > tag defines ordered list and < ul > tag defines  unordered list.

</ul> →  closing tag of unordered list .      

<li> → stands for list item.        

<p> → used to start a paragraph.

Similar questions