Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> html { overflow-y: scroll; } </style> </head> <body> <h1>Example</h1> <section> <h2>Hypertext markup language HTML</h2> <p> HTML, an acronym for HyperText Markup Language, is a primary markup language for creating websites. It consists of a series of codes used to structure texts, images, and other content to be displayed in a browser. </p> <section> <h3>HTML Tags</h3> <p> HTML Basic Tags are used to structure website content (text, hyperlinks, images, media, etc). Tags only "instruct" browsers how to show the content of the web page. HTML Tags chapter suggests the most frequently used tags in HTML with their examples. </p> </section> </section> <section> <h2>CSS</h2> <p> CSS stands for Cascading Style Sheets is a language that is designed to format the layout of Web pages. It is used to enable the separation of presentation and content, which includes layout, colors, and fonts. </p> </section> </body> </html>