Computer Science, asked by mishrasandhya867, 8 months ago

Write an HTML code to create the following bulleted list.
°MS Excel
° MS Word
° MS PowerPoint
MS Access

Answers

Answered by vineetasingh1550
10

Answer:

<html>

<html><head>

<html><head><title> Bulleted</title> </head>

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50">

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50"><font size = "7">Microsoft Softwares</ font>

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50"><font size = "7">Microsoft Softwares</ font><font size = "6">

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50"><font size = "7">Microsoft Softwares</ font><font size = "6"><ul type = " circle">

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50"><font size = "7">Microsoft Softwares</ font><font size = "6"><ul type = " circle"><li> MS Excel

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50"><font size = "7">Microsoft Softwares</ font><font size = "6"><ul type = " circle"><li> MS Excel<li>MS Word

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50"><font size = "7">Microsoft Softwares</ font><font size = "6"><ul type = " circle"><li> MS Excel<li>MS Word<li>MS PowerPoint

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50"><font size = "7">Microsoft Softwares</ font><font size = "6"><ul type = " circle"><li> MS Excel<li>MS Word<li>MS PowerPoint<li>MS Access

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50"><font size = "7">Microsoft Softwares</ font><font size = "6"><ul type = " circle"><li> MS Excel<li>MS Word<li>MS PowerPoint<li>MS Access</ul>

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50"><font size = "7">Microsoft Softwares</ font><font size = "6"><ul type = " circle"><li> MS Excel<li>MS Word<li>MS PowerPoint<li>MS Access</ul></font>

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50"><font size = "7">Microsoft Softwares</ font><font size = "6"><ul type = " circle"><li> MS Excel<li>MS Word<li>MS PowerPoint<li>MS Access</ul></font></body >

<html><head><title> Bulleted</title> </head><body leftmargin = "50" topmargin = "50"><font size = "7">Microsoft Softwares</ font><font size = "6"><ul type = " circle"><li> MS Excel<li>MS Word<li>MS PowerPoint<li>MS Access</ul></font></body ></html>

If you like it mark as brainlist

Answered by KailashHarjo
5

The HTML code to create the given bulleted list is written below:

<!DOCTYPE html>

<html>

<body>

<h1>THE BULLETED LIST</h1>

<ul style="list-style-type: circle">

 <li>MS Excel</li>

 <li>MS Word</li>

 <li>MS PowerPoint</li>

 <li>MS Access</li>

</ul>

</body>

</html>

  • An unordered list can be defined using the HTML element <ul>..
  • We can create a list item using an HTML element  <li>. One can nest lists.
  • We can also include HTML elements in list items.
  • With the <ul> tag, an unordered list is introduced. The <li> tag comes first in every list item.
  • By default, the list items will be denoted with bullets (small black circles). The style of the list item marker is specified using the CSS list-style-type property.
  • The various CSS styles are as follows:
  • Disk changes the bullet for the list item marker (default)
  • Circle is used as the list item marker.
  • Square sets the list item marker to a square shaped bullets.
  • None of the items on the list will be marked if None is mentioned as the list-style-type property.

To learn more on unordered lists in HTML, refer to these answers:

https://brainly.in/question/3195332

https://brainly.in/question/4361285

#SPJ2

Similar questions