Posts

Showing posts from August, 2021

Web Technologies

HTML is the standard markup language for Web pages. All HTML documents must start with a document type declaration: <!DOCTYPE html>. The HTML document itself begins with <html> and ends with </html>. The visible part of the HTML document is between <body> and </body>. The <!DOCTYPE> declaration represents the document type, and helps browsers to display web pages correctly. It must only appear once, at the top of the page (before any HTML tags). HTML headings are defined with the <h1> to <h6> tags. <h1> defines the most important heading. <h6> defines the least important heading HTML paragraphs are defined with the <p> tag: HTML links are defined with the <a> tag: <a href="https://www.wschools.com">This is a link</a> HTML images are defined with the <img> tag. <img src="w3schools.jpg" alt="wSchools.com" width="104" height="142"> View HTML Sou...