Computer Science, asked by madhumadhurika1, 9 months ago

Write the html code to display your name and address in italic and give it blue on webpage

Answers

Answered by Anonymous
6

Answer:

Hey There!!!

HTML stands for Hyper Text Markup Language .

It is used in designing of websites.

Here are the tags you need to use:

Bold        ->  <b>Text</b>

Italics       ->  <i>Text</i>

Underline ->  <u>Text</u>

So, here, your code would be: 

______________________

<html>

<body>

<b><i><u>Your Name Here</u></i></b>

</body>

</html>

______________________

Hope it helps

Answered by Anonymous
16

Answer:

In HTML it is possible to add colours, fonts and other styles to the web pages that you build, however this is not recommended and HTML should be used for structure only. To add colours, fonts, etc. we will use Cascading Style Sheets, also known as CSS.

Similar questions