answersLogoWhite

0

(㇏(•̀ᵥᵥ•́)ノ)

User Avatar

Curtis Strite

Lvl 13
4y ago

What else can I help you with?

Continue Learning about Engineering

What is the attribute that changes font type?

The font tag has an attribute called "Face" using which you can set the font type. Ex: <Font face = "Verdana"> will display all following text in the Verdana font. You can also set font size and color using this tag. Ex: <Font face = "Verdana" color = "Red" size = "10"> will display text in Verdana font, red color and 10 pixels high in size.


What font add emphasis to text may include bold italic and underline?

1. a. type c. style b. face d. weight


How do you add scrolling text to HTML page?

I love using this code: <marquee>Enter scrolling text here</marquee> Put this code underneath the <body> tag: <html> <body> <marquee>Enter scrolling text here</marquee> </body> </html> Want to change the colour of the text? <font face="arial" color="colour you want" size="8"> place that between <body> and <Marquee> <html> <body> <font face="arial" color="colour you want" size="8"> <marquee>Enter scrolling text here</marquee> </body> </html>


How do you make a scroll box on Howrse?

A simple one: <tr> <td colspan="5"> <br></td></tr> <tr> <td><br></td> <td><br></td> <td> <br></td> <td><div style="overflow: auto; width: 250px; height: 300px;" align="center">TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT<br style="color: rgb(255, 255, 255);">TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT<br style="color: rgb(255, 255, 255);"><br style="color: rgb(255, 255, 255);"><br><br><br><br></div></td></tr> <tr><td colspan="5"><br></td> </tr> </tbody></table>


What is a font?

The <font> tag is a deprecated way of telling the browser that the text contained between the tag and its closing </font> tag should have certain font properties. This tag has been replaced by the <span> tag in connection with CSS, but most browsers still support the old <font> tag for the sake of backward compatibility. Here are some examples of use. <font face="Times New Roman">text</font> <font color="red">text</font> <font size="+1">text</font> <font face="Arial" color="blue" size=7>text</font> These three bits of markup could be done "correctly" using CSS as follows: <span style="font-family: 'Times New Roman';">text</span> <span style="color: red;">text</span> <span style="font-size: larger;">text</span> <span style="font-family: 'Times New Roman'; color: "blue"; font-size: xx-large;">text</span>