html body { margin-top: 50px !important; } #top_form { position: fixed; top:0; left:0; width: 100%; margin:0; z-index: 2100000000; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -o-user-select: none; border-bottom:1px solid #151515; background:#FFC8C8; height:45px; line-height:45px; } #top_form input[name=url] { width: 550px; height: 20px; padding: 5px; font: 13px "Helvetica Neue",Helvetica,Arial,sans-serif; border: 0px none; background: none repeat scroll 0% 0% #FFF; }
, , and W3schools: HTML Basic Examples W3schools: HTML Basic Examples Don't worry if these examples use tags you have not learned. HTML Documents The HTML document itself begins with <html> and ends with </html>. The visible part of the HTML document is between <body> and </body>. Example <!DOCTYPE html> </body> Try it Yourself https://www.w3schools.com/html/html_basic.asp 1/4 HTML Headings <h1> defines the most important heading. <h6> defines the least important heading: Example Try it Yourself HTML Paragraphs Example <p>This is a paragraph.</p> Try it Yourself HTML Links Try it Yourself https://www.w3schools.com/html/html_basic.asp 2/4 HTML Images The source file (src), alternative text (alt), width, and height are provided as attributes: Example Try it Yourself Previous Next COLOR PICKER HOW TO https://www.w3schools.com/html/html_basic.asp 3/4 tags. It provides examples of each element and how they are structured, such as the tag defining links and the
tag using attributes like src, alt, width, and height. The purpose is to demonstrate fundamental HTML markup for documents, headings, paragraphs, links, and images.">
Uploaded by
Naveen YallapuUploaded by
Naveen Yallapu12/7/2017 HTML Basic
HTML CSS MORE
w3schools.com HTML Basic Examples
Previous Next You will learn about them in the next chapters.
All HTML documents must start with a document type declaration: <!DOCTYPE html>.
<html>
<body> <h1>My First Heading</h1>
<p>My first paragraph.</p>
</html>
12/7/2017 HTML Basic
HTML CSS MORE HTML headings are defined with the <h1> to <h6> tags.
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
HTML paragraphs are defined with the <p> tag:
<p>This is another paragraph.</p>
HTML links are defined with the <a> tag:
Example <a href="https://www.w3schools.com">This is a link</a>
12/7/2017 HTML Basic The link's destination is specified in the href attribute.
HTML CSS MORE
Attributes are used to provide additional information about HTML elements.
HTML images are defined with the <img> tag. <img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">
Tabs
Dropdowns
Accordions
Convert Weights
Animated Buttons
Side Navigation
Top Navigation
Modal Boxes
Progress Bars
Parallax
Login Form
HTML Includes
Google MapsYou might also like