Its a Language for making websites Structure:
<!DOCTYPEhtml><html><head><metacharset="utf-8"><title>put tab name here</title></head><body></body></html>
<!--What dose Html look ike?--><html><head><script>//this is a javascriptconsole.log("hello world")//print "hello world"var x =10//varablevar x = x +10//add 10 to a varableconsole.log(x)//print x</script></head><body><h1>This is a headder</h1><p>this is a paragraph</p><pclass="Text_1"id="P1">this is a paragraph with an id and a class</p></body>
<htmllang="en"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compatible"content="IE=edge"><metaname="viewport"content="width=device-width, initial-scale=1.0"><linkrel="icon"href="past here your logo path"type="image/x-icon"><title>Website title</title></head><body><!-- Body --></body></html>
<!DOCTYPEhtml><html><body><pid="demo"></p>
//JavaScript can create dynamic HTML content:
<script>document.getElementById("demo").innerHTML="Date : "+Date();</script></body></html>
/*when you Click on these buttons it should call the function changeColor
and the function will change the color */
<buttononclick="changeColor(this,'red')">
Click me to change my color.
</button><buttononclick="changeColor(this,'blue')">
Click me to change my color.
</button><buttononclick="changeColor(this,'green')">
Click me to change my color.
</button><script>functionchangeColor(element, color){
element.style.color= color;}</script>
<!DOCTYPEhtml><html><body><h2>JavaScript addEventListener()</h2><p>This example uses the addEventListener() method to add many events on the same button.</p><buttonid="myBtn">Try it</button><pid="demo"></p><script>var x =document.getElementById("myBtn");
x.addEventListener("mouseover", myFunction);
x.addEventListener("click", mySecondFunction);
x.addEventListener("mouseout", myThirdFunction);functionmyFunction(){document.getElementById("demo").innerHTML+="Moused over!<br>";}functionmySecondFunction(){document.getElementById("demo").innerHTML+="Clicked!<br>";}functionmyThirdFunction(){document.getElementById("demo").innerHTML+="Moused out!<br>";}</script></body></html>
Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects on World Wide Web pages.
<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><metaname="viewport"content="width=device-width, initial-scale=1.0"><metahttp-equiv="X-UA-Compatible"content="ie=edge"><title>owass admition school page</title></head><body><center>WELCOME TO POPKU WARE ADMITION SCHOOL PAGE <labelfor="big"></label></center><form> First Name : <inputtype="text"name="Fname"></form><form> Second Name : <inputtype="text"name="Sname"></form><form> Last Name : <inputtype="text"name="Lname"></form><form> index number : <inputtype="number"name="Lname"></form><form> Date of birth : <inputtype="date"name="name"></form><bodystyle="background-color:powderblue;"></a></body><ntp-realboxid="realbox"shown=""></ntp-realbox></body></html>
The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript.
<!DOCTYPEhtml><html><head><title>Title of the document</title></head><body><details><summary>Copyright 2013-2014.</summary><p>W3docs. All rights reserved.</p><p>The content of the website is the property of W3Docs.com.</p></details></body></html>
<!DOCTYPEhtml><html><head><title>Title of the document</title></head><body><details><summary>Copyright 2013-2014.</summary><p>W3docs. All rights reserved.</p><p>The content of the website is the property of W3Docs.com.</p></details></body></html>
<body><h1>Styles Conference</h1><p>Every year the brightest web designers and front-end developers descend on Chicago to discuss the latest technologies. Join us this August!</p></body>
<body><h1>Styles Conference</h1><p>Every year the brightest web designers and front-end developers descend on Chicago to discuss the latest technologies. Join us this August!</p></body>
<!-- chat/templates/chat/index.html --><!DOCTYPEhtml><html><head><metacharset="utf-8"/><title>Chat Rooms</title></head><body>
What chat room would you like to enter?<br><inputid="room-name-input"type="text"size="100"><br><inputid="room-name-submit"type="button"value="Enter"><script>document.querySelector('#room-name-input').focus();document.querySelector('#room-name-input').onkeyup=function(e){if(e.keyCode===13){// enter, returndocument.querySelector('#room-name-submit').click();}};document.querySelector('#room-name-submit').onclick=function(e){var roomName =document.querySelector('#room-name-input').value;window.location.pathname='/chat/'+ roomName +'/';};</script></body></html>
<!DOCTYPEhtml><htmllang="en"><head><title>QR-Code Generator</title><style>*{margin:0px;padding:0px;font-family: monospace, Arial, sans-serif;}h1{text-align: center;text-shadow:2px2px0pxrgba(255,255,255,.7),5px7px0pxrgba(0,0,0,0.1);font-size:50px;margin-top:40px;color:#fff;}input[type=text]{width:90%;padding:12px20px;margin:8px26px;display: inline-block;border:1px solid #ccc;box-sizing: border-box;font-size:16px;}button{background-color:#4CAF50;color:white;padding:14px20px;margin:8px26px;border: none;cursor: pointer;width:90%;font-size:20px;}button:hover{opacity:0.8;}</style><!--Jquery 3.2.1--><scriptsrc="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script></head><bodybackground="../background1.png"><h1>QR-Code Generator</h1><divid="form-wrapper"style="width:46%;float:left;border:5px solid rgba(255,255,255,0.6);margin-top:20px;padding:10px"><formid="generator"><labelfor="codeSize"style="font-size:20px;margin-right:20px;color:#fff;">Select QR Size:</label><selectid="codeSize"name="codeSize"style="width:260px;height:40px;"><optionvalue="75">Mini</option><optionvalue="155">Small</option><optionvalue="186">Medium</option><optionvalue="248"selected="selected">Large</option><optionvalue="300">XL</option><optionvalue="450">XXL</option></select>
<input type="text" onclick="myFunction()" id="codeData" name="codeData" size="50" placeholder="Enter a url or text" style="margin-top:20px" autocomplete="off"/ >
<br><buttonid="generate">generate</button></form><divid="alert"style="height:20px;text-align:center;margin:10px auto"></div></div><divstyle="float:right;"><divid="image"style="margin:auto">Image will show here</div><divid="link"style="margin-top:10px;text-align:center"></div></div><divid="code"style="float:left;width:100%;height:20px;text-align:center;margin-top:10px"></div><script>functionmyFunction(){document.getElementById("alert").innerHTML="";}$("#generate").on("click",function(){var data =$("#codeData").val();var size =$("#codeSize").val();if(data ==""){$("#alert").append("<p style='color:#fff;font-size:20px'>Please Enter A Url Or Text</p>");// If Input Is Blankreturnfalse;}else{if($("#image").is(':empty')){//QR Code Image$("#image").append("<img src='http://chart.apis.google.com/chart?cht=qr&chl="+ data +"&chs="+ size +"' alt='qr' />");//This Provide An Image Download Link$("#link").append("<a style='color:#fff;' href='http://chart.apis.google.com/chart?cht=qr&chl="+ data +"&chs="+ size +"'>Download QR Code</a>");//This Provide the Image Link Path In Text$("#code").append("<p style='color:#fff;'><strong>Image Link:</strong> http://chart.apis.google.com/chart?cht=qr&chl="+ data +"&chs="+ size +"</p>");returnfalse;}else{$("#image").html("");$("#link").html("");$("#code").html("");//QR Code Image$("#image").append("<img src='http://chart.apis.google.com/chart?cht=qr&chl="+ data +"&chs="+ size +"' alt='qr' />");//This Provide An Image Download Link$("#link").append("<a style='color:#fff;' href='http://chart.apis.google.com/chart?cht=qr&chl="+ data +"&chs="+ size +"'>Download QR Code</a>");//This Provide the Image Link Path In Text$("#code").append("<p style='color:#fff;'><strong>Image Link:</strong> http://chart.apis.google.com/chart?cht=qr&chl="+ data +"&chs="+ size +"</p>");returnfalse;}}});</script></body></html>
<!DOCTYPEhtml><htmllang="en"class="no-js"><head><metacharset="UTF-8"><metaname="viewport"content="width=device-width"><title>Unique page title - My Site</title><scripttype="module">document.documentElement.classList.remove('no-js');document.documentElement.classList.add('js');</script><linkrel="stylesheet"href="/assets/css/styles.css"><linkrel="stylesheet"href="/assets/css/print.css"media="print"><metaname="description"content="Page description"><metaproperty="og:title"content="Unique page title - My Site"><metaproperty="og:description"content="Page description"><metaproperty="og:image"content="https://www.mywebsite.com/image.jpg"><metaproperty="og:image:alt"content="Image description"><metaproperty="og:locale"content="en_GB"><metaproperty="og:type"content="website"><metaname="twitter:card"content="summary_large_image"><metaproperty="og:url"content="https://www.mywebsite.com/page"><linkrel="canonical"href="https://www.mywebsite.com/page"><linkrel="icon"href="/favicon.ico"><linkrel="icon"href="/favicon.svg"type="image/svg+xml"><linkrel="apple-touch-icon"href="/apple-touch-icon.png"><linkrel="manifest"href="/my.webmanifest"><metaname="theme-color"content="#FF00FF"></head><body><!-- Content --><scriptsrc="/assets/js/xy-polyfill.js"nomodule></script><scriptsrc="/assets/js/script.js"type="module"></script></body></html>
<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compatible"content="IE=edge"><metaname="viewport"content="width=device-width, initial-scale=1.0"><linkrel="stylesheet"href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"><linkrel="stylesheet"href="form.css"><title>formulaire</title></head><body><form><h1>Contactez Nous</h1><divclass="corps-formulaire"><divclass="gauche"><divclass="groupe"><labelfor="nom">Nom</label><inputtype="text"name="nom"placeholder="Nom"><iclass="fas fa-user"></i></div><divclass="groupe"><labelfor="email">Email</label><inputtype="email"name="email"placeholder="Email"><iclass="fas fa-envelope"></i></div><divclass="groupe"><labelfor="motDePasse">Mot De Passe </label><inputtype="text"name="motDePasse"placeholder="Entrée Votre Mot De Passe"></div><divclass="groupe"><labelfor="tel">Téléphone</label><inputtype="number"name="telephone"placeholder="Téléphone"><iclass="fas fa-mobile-alt"></i></div><divclass="groupe"><labelfor="entreprise">Nom De L'entreprise </label><inputtype="text"name="entreprise"placeholder="Nom De L'entreprise"><iclass="fas fa-building"></i></div></div><divclass="droite"><divclass="groupe"><labelfor="Messages">Messages</label><textarea>Saisissez ici....</textarea></div></div></div><divclass="pied-formulaire"align="center"><buttonid="btn"type="submit">Envoyer Votre Messages</button></div></form></body></html>
<html><head><metacharset="UTF-8"/><title>Book Store</title><metaname="description"content="This Is Our Book Store"/><style></style><script></script><linkrel="stylesheet"href=""></head><body>
This Is My Book Store, Welcome
</body></htm>
<metaname="description"content="This Is Description For My First Page "/><!-- This meta is used to show the descriptio of the page in the search results --><metacharset="UTF-8"/><!-- Used to allow multiple language content in the web page --><metaname="keywords"content="HTML CSS JavaScript"/><!-- Used to include the web page in the search result depending on these keywords --><metaname="viewport"content="width=device-width ,intial -scale =1.0"/><!-- Used to arrange content within the page --><metaname="author"content="Asim Mohammed"/><!-- Used to show the web page depending on the author of the page -->
HTML: HYPER TEXT MARK UP LANGUAGE:
To understand it in simple,
HTML is a language that makes the basic layout for a website and is the
blueprint.
It will make the basic function that make up a page.
An example of a mostly HTML-only page is WIKIPEDIA.
The HyperText Markup Language, or HTML is the standard markup language for documents designed to be displayed in a web browser. ... HTML provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items.
<!DOCTYPEhtml><html><head><metacharset="utf-8"><title>"The Basic Structure of an HTML code"</title></head><body>
"The body of the page goes here"
</body></html>