Corpuz - Ass. HTML
Corpuz - Ass. HTML
-Hypertext Markup Language, or HTML, is a widely used coding language for structuring and creating
content for the World Wide Web. The structure and presentation of web pages are defined by a variety
of elements and tags, including headings, paragraphs, links, images, and more. The foundation of web
development is HTML pages, which web browsers interpret to display text, pictures, and multimedia
information.
The term "common internet domains" usually refers to the top-level domains (TLDs) that are often used
for websites and email addresses. Among the most typical ones are:
2. .org - Originally reserved for organizations, but now embraced by many organizations.
3. .net - Initially reserved for network-related enterprises, but now available to all users.
8. .co - A popular global substitute for.com that was originally reserved for Colombia.
9. Online services and digital firms are becoming more and more popular with.io.
14. Media and entertainment websites frequently utilize the domain extension.tv.
c.) What are the requirements in creating a Web page using the HTML
2. Create a HTML document structure with an opening `html>` tag and a closing `</html>` tag. The
document should be divided into two main sections: `head>` and `body>`.
3. The basic HTML structure should have a `head>` section with a `title>` tag and a `meta charset="UTF-
8">` tag. The `body>` section contains the visible content of the web page.
4. HTML elements should be used to structure content, including headings, paragraphs, links, images,
lists, tables, and forms.
6. Proper nesting should be followed, with elements properly nested within each other.
9. Validate your HTML code using online validators like the W3C Markup Validation Service to ensure it
follows HTML standards.
HERE ARE THE VERY BASIC EXAMPLE OF SIMPLE HTML PAGE.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
</body>
</html>
10. Test your web page in different browsers to ensure it displays correctly.
Web pages are composed of various HTML elements that structure and display content. Here are some
of the fundamental HTML elements commonly used on web pages:
1. **Text Elements:**
3. **Lists:**
5. **Tables:**
- `<title>`: Sets the title of the web page (displayed in the browser tab).
9. **Comments:**
- `<!-- Comment goes here -->`: Used for adding comments to HTML code (not displayed on the page).
These are just some of the essential HTML elements used to structure and format web page content.
Web developers can combine and customize these elements to create rich and interactive web pages.
Additionally, CSS (Cascading Style Sheets) is often used to style and layout these elements, while
JavaScript adds interactivity and dynamic behavior to web pages.