Learn What Is What Tags Are In A Basic Web Page

Html1well Learn What Html Iswhat Tags Arewhat A Basic Web Page Look

HTML 1 We’ll learn … What HTML is What tags are What a basic web page look like What 3 HTML tags are required What HTML comments look like How to title your web page How to format the text on your web page How to create headings on your web page How to add pictures to your page HTML Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language of the internet

TAGS Look like this: < > Come in pairs (every begin tag must have an end tag) <html> </html> PAIRS TAGS do not show up on a web page There are 3 REQUIRED TAGS 1. <html> </html> ONLY ONE 2. <head> </head> ONLY ONE (maybe put a title in here) 3. <body> </body> ONLY ONE (stuff that shows up)

Basic Web Page

<html>

<head>

<title> My page </title>

</head>

<body>

Hello this is my page

</body>

</html>

Head section

Head section contains elements like

which go inside <head> and are essential for the web page's metadata and title display. <h3>Body section</h3> <p>The content that will appear on the webpage, such as text, images, and other media, is placed inside <body>.</p> <h2>Text Formatting</h2> <p>Text formatting types include:</p> <ul> <li><strong>Paragraph:</strong> <p> I’m my own paragraph </p></li> <li><strong>Line break:</strong> Makes the browser go to the next line <br /> I’m Line 1. <br /> I’m Line 2.</li> <li><strong>Bold:</strong> <strong> I’m bold </strong></li> <li><strong>Underline:</strong> <u> I’m underlined </u></li> <li><strong>Italic:</strong> <em> I’m italic </em></li> <li><strong>Horizontal rule:</strong> <hr /></li> <li><strong>Headings:</strong> <h#> </h#> replace # with 1-6 for size (e.g., <h1>Head</h1>)</li> </ul> <h2>Adding Images</h2> <p>Insert an image with the <img> tag:</p> <pre><img src="yourimage.jpg" width="25%" /></pre> <p>The image file must be in the same folder as your HTML file.</p> <h2>Getting Started – Example Exercise</h2> <p>Create a new folder called “LastName FirstName Project 1”. Open notepad, save your file as <strong>project1.html</strong> inside that folder. Use all required tags: <html>, <head> (with a title), and <body>.</p> <p>In the <body>, add two headings: “My Proposal” and “My Research”. Separate them with a horizontal rule. Write several paragraphs to outline an RFP for a grocery delivery website.</p> <p>Download an image related to project management into your folder and include it in the “My Proposal” section. Add at least three resources in “My Research”, citing credible sources. Identify a professional interest in procurement and contract management, such as working with government agencies or educational institutions, and specify types of suppliers you might negotiate with and potential risks involved, supported by credible references.</p> <h2>Paper For Above instruction</h2> <p>Hypertext Markup Language (HTML) is the foundational language used to create web pages on the internet. It provides the structure and content of a website through the use of tags, which are special instructions enclosed in angle brackets. HTML is essential for web development, as it organizes text, images, and links in a way that browsers can interpret and display correctly.</p> <p>A basic HTML document consists of three crucial tags: <html>, <head>, and <body>. The <html> tag encapsulates the entire webpage content, indicating to browsers that the document is an HTML file. The <head> section contains metadata about the page, such as the title, scripts, and styles, but it is not visible directly on the webpage. The <body> section includes all the content that users see and interact with, such as text, images, headings, and links.</p> <p>Structuring a simple web page requires these tags to be present exactly once each. The <title> tag, placed inside the <head> section, assigns a title to the page that appears on the browser tab. Accurate titling is vital for SEO and user navigation. Inside the <body>, HTML provides a variety of tags to format text such as <p> for paragraphs, <h1>-<h6> for headings, <hr> for horizontal lines, and inline elements like <strong> for bold and <em> for italics. Image embedding is achieved through the <img> tag, which requires a source attribute pointing to the image file, and optionally, a width or height specification.</p> <p>Effective web pages also utilize HTML comments, which are notes within the code that are ignored by browsers. Comments are enclosed between <!-- and --> and are useful for documentation or annotations within the code for future reference or collaboration.</p> <p>To demonstrate the application of HTML, consider an exercise where a student creates a webpage with a specific structure. This starts by creating a folder, saving the HTML file with the proper tags, and including headings, images, and resources related to a project proposal for a grocery delivery website. Such exercises not only reinforce understanding of HTML syntax but also teach practical skills in web development, documentation, and resource organization.</p> <p>The significance of HTML extends beyond simple webpage construction; it forms the backbone of web design, affecting accessibility and SEO. Proper structuring of HTML content ensures that websites are user-friendly and search-engine optimized, which is crucial in a competitive digital landscape.</p> <p>In conclusion, mastering HTML tags and their correct usage enables developers to build basic yet effective web pages. Understanding elements like the document structure, text formatting, images, and comments empower learners to create engaging and well-organized online content, serving as a fundamental skill for anyone interested in web development and digital communication.</p> <h3>References</h3> <ul> <li>Duckett, J. (2014). <em>HTML and CSS: Design and Build Websites</em>. John Wiley & Sons.</li> <li>Frain, B. (2018). <em>Responsive Web Design with HTML5 and CSS3</em>. Packt Publishing.</li> <li>Cederholm, D. (2011). <em>HTML5 For Web Designers</em>. New Riders.</li> <li>W3Schools Online Web Tutorials. (2023). <a href="https://www.w3schools.com">https://www.w3schools.com</a></li> <li>Harwani, S. (2022). <em>HTML5 and CSS3 All-in-One For Dummies</em>. John Wiley & Sons.</li> <li>HTML.com. (2023). Introduction to HTML. Retrieved from <a href="https://html.com/">https://html.com/</a></li> <li>Beaird, J., & George, J. (2014). <em>The Principles of Beautiful Web Design</em>. SitePoint.</li> <li>Johnson, W. (2019). <em>HTML and CSS: Visual QuickStart Guide</em>. Peachpit Press.</li> <li>Mozilla Developer Network. (2023). Learn HTML. Retrieved from <a href="https://developer.mozilla.org/en-US/docs/Web/HTML">https://developer.mozilla.org/en-US/docs/Web/HTML</a></li> <li>Roberts, W. (2020). <em>Learning Web Design: A Beginner's Guide</em>. O'Reilly Media.</li> </ul>