How To Make a Website - W3Schools
www.w3schools.com › howto › howto_make_a_websiteFirst Step - Basic HTML Page HTML is the standard markup language for creating websites and CSS is the language that describes the style of an HTML document. We will combine HTML and CSS to create a basic web page. Note: If you don't know HTML and CSS, we suggest that you start by reading our HTML Tutorial. Example <!DOCTYPE html> <html lang="en">
HTML Basic - W3Schools
www.w3schools.com › html › html_basic<body> <h1> My First Heading </h1> <p> My first paragraph. </p> </body> </html> Try it Yourself » The <!DOCTYPE> Declaration 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).