Updated:02/01/2024 by Computer Hope
As per the history of HTML ,First developed by Tim Berners-Lee in 1990, HTML is short for Hypertext Markup Language HTML is used to create electronic documents (called pages) that are displayed on the World Wide Web. Each page contains a series of connections to other pages called hyperlinks. Every web page you see on the Internet is written using one version of HTML code or another.
HTML5 is the update made to HTML from HTML4 (XHTML follows a different version numbering scheme). Means all rules are same for HTML and HTML4, but add new tags and attributes which allow for better semantics and for dynamic elements that are activated using JavaScript.New elements are as follow :
<!--
Example contain a basic element of html , just create a simple web page in web browser
Note : open note paid and Save this code on notepad with extension of .html
then right click and select option of Open with in Window user ,run with any browser and display output .
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Example page</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
</head>
<body>
<h1>This is a heading</h1>
<p>This is an <b>example</b> of a basic HTML page.</p>
</body>
</html>
Managed table and external table in spark ....
Basic example of Java DataBase Connectivity | Java Connectivity | RDBMS | Java Programs
Basic example of array List in java
Difference between JDK, JRE and JVM
What Is A Function in javascript | Anonymous Functions
what is sql-constraints | type of SQL Constraints