0% found this document useful (0 votes)
16 views

Computer Reviewer 1st Quarter

Uploaded by

larong.silven
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views

Computer Reviewer 1st Quarter

Uploaded by

larong.silven
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Computer Reviewer (1st Quarter)

HTML - Hypertext Mark-up Language


Webpage - page in your screen
Website - address/link

Headings
<h1> - is the biggest font
<h6> - smallest font
● <h1> is the main title for the whole page ("Welcome to My Website").
● The bigger the number the smaller the heading gets.

The <html> is the root element of an HTML page

The <head> contains meta information about the HTML page

The <title> title for the HTML page (which is shown in the browser's title bar or in the
page's tab)

The <body> is the document's body, and is a container for all the visible contents, such as
headings, paragraphs, images, hyperlinks, tables, lists, etc.

The <h1> defines a large heading

The <p> element defines a paragraph

HTML Text Formatting


HTML contains several elements for defining text with a special meaning.

Formatting elements were designed to display special types of text:

● <b> - Bold
● <strong> - Important
● <i> - Italic
● <em> - Emphasized
● <mark> - Highlighted
● <small> - Smaller
● <del> - Deleted
● <ins> - Insert
● <sub> - text goes down. example - 43
● <sup> - text goes up. Example - 4*
HTML Quotations and Citations

<address> - Shows contact info, like a phone number or email.


<bdo> - Tells the computer which way the letters should go (left or right).
<blockquote> - Big indent.
<cite> - basically italic with small indent.
<abbr> - Shortens a long word.
<q> - Quotes.
<center> - Places the text in the center

HTML Style and HTML Colors


The HTML style attribute is used to add styles to an element, such as color, font, size,
and more.

● Use the <body style= “bgcolor-red"> attribute for styling HTML elements
● Use <body bgcolor=red> for background color
● Use < font color=red> for text colors
● Use font-family for text fonts
● Use font-size for text sizes
● Use text-align for text alignment

Example on how to use


coding
<html>
<body bgcolor=pink>

<h1> <font color=blue> Hi </font> </h1>


<h3> <font color=yellow> Study
</font> </h3

</html>
</body>

Example on using styles


<html>
<body>
<p style=color:blue;> baka<p><br>
<p style=font-family:”Arial”;>don’t be a nonchalant dreadhead</p><br>
<p style=font-size:300%;>Bardia</p><br>
<center styler=color:pink;>females</center><br>
</body>
</html>

Check w3school for further more information


https://www.w3schools.com/

You might also like