Notes
Notes
Goyagoy
STEM 12 - St. Patrick
From the videos and websites we have for our references on the first day of immersion, I
learned that html is not as easy as it seems. HTML or Hypertext Markup Language is the
basic language and the standard markup language for making web pages and it consists of a
series elements such as paragraph body, heading, and many more. The following steps is
shown below ;
1. <!DOCTYPE html> - This is the indication that you are using an HTML document.
2. <html> - Root element of HTML.
3. <head> - It contains the meta information about HTML
4. <title>Page Title</title> - This is the title shown in the page's tab.
5. </head>
6. <body> - It defines the document such as the paragraphs, headings, links, and images.
7. <h1>My First Heading</h1> - Uses of large headings.
8. <p>My first paragraph.</p> - Just simply paragraphs.
9. </body>
10. </html>
Example :
1. <!DOCTYPE html>
2. <html>
3. <head>
4. <title>My Immersion</title>
5. </head>
6. <body>
7. <h1>Experience</h1>
8. <p>It was good and tiring.</p>
9. </body>
10. </html>
1. The Href Attribute - The URL of the page the link leads to is specified by the href
attribute and <a> defines hyperlinks.
Ex :
2. The Src Attribute - Used to insert images. There are two ways to specify the URL in
the src attribute:
3. The Width and Height Attributes - The width and height of the image.
Ex :
HTML Headings
- Covers how to create headings of different sizes for structuring content. HTML headings
are defined with the <h1> to <h6> tags. Also, you can adjust the font size.
HTML Paragraphs
HTML Styles
HTML Formatting
HTML Quotations
- Covers how to use quotations (blockquotes, inline quotations) for citing sources or
highlighting text.
HTML Comments
- Explains how to add comments to HTML code for documentation and readability.
HTML Colors
HTML CSS
Explains how to integrate CSS with HTML for
styling and layout.
HTML Page Title :Explains how to set a title for your web page,
which appears in the browser tab.
HTML File Paths Explains how to specify file paths for images,
scripts, and other resources.
FORMS OF HTML
1. HTML Forms: Covers the basics of creating forms for user input.
form elements.
available in HTML.
elements.
CSS TUTORIAL
1. Introduction: Explains what CSS is and how it helps make websites look
nice. Encourages trying out examples.
7. CSS SASS: Explains SASS, a tool that makes it easier to write CSS with
helpful features.