standard markup language for creating Web pages. • HTML stands for Hyper Text Markup Language • HTML describes the structure of Web pages using markup • HTML elements are the building blocks of HTML pages • HTML elements are represented by tags • HTML tags label pieces of content such as "heading", "paragraph", "table", and so on • Browsers do not display the HTML tags, but use them to render the content of the page • The <!DOCTYPE html> declaration defines this document to be HTML5 • The <html> element is the root element of an HTML page • The <head> element contains meta information about the document • The <title> element specifies a title for the document • The <body> element contains the visible page content • The <h1> element defines a large heading • The <p> element defines a paragraph
<html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> <a href=https://www.w3schools.com> <a href="https://www.w3schools.com"> Alt : Specifies an alternative text for an image, when the image cannot be displayed Disabled : Specifies that an input element should be disabled Href : Specifies the URL (web address) for a link Id : Specifies a unique id for an element Src : Specifies the URL (web address) for an image Style : Specifies an inline CSS style for an element Title : Specifies extra information about an element (displayed as a tool tip)
the style of an HTML document. CSS describes how HTML elements should be displayed. This tutorial will teach you CSS from basic to advanced. What is CSS? • CSS stands for Cascading Style Sheets • CSS describes how HTML elements are to be displayed on screen, paper, or in other media • CSS saves a lot of work. It can control the layout of multiple web pages all at once • External stylesheets are stored in CSS files
no-repeat; background-position: right top; margin-right: 200px; background-attachment: fixed; } </style> </head> <body> <h1>Hello World!</h1> <p>If you do not see any scrollbars, try to resize the browser window.</p> </body> </html> AN EXAMPLE WITH CSS BACKGROUNDS
To practice on Any Editor At least 3rd Step Css Learning The Basics 4th Step Putting it to work On an HTML file at Least 5th Step Using Framworks To Make Work Easy
Me any type of editor That we Have What is an Editor? • An Editor Is Used to write our raw code so out browers can be able to comunicate with it • A Best Editor Makes Up to enjoy what we are doing with our own code any editor can do for It