Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

History of HTML:

1991  HTML 1.0

1993 -> HTML 2

1995-> HTML X

2000-> HTML4

2014-> HTML5

UI5 VS HTML5

- UI5 is a framework and HTML5 is a markup language

- UI5 is managed by SAP and HTML5 is managed by W3C

FUNDA FOX:

1. HTML is a tree data structure. When we run an HTML, we also get this tree rendered in the
browser, which can be seen by using developer tools (F12).

2. This Tree data structure is known as DOM (Document Object Model)

3. All Browsers understand HTML directly.

<html>
<head>
<script>

</script>
</head>
<body>
<!-- <h1>AnubhavTrainings</h1> -->
<!-- <p>Welcome to BAS</p>
<button>Click me</button>
<img
src="https://i.pinimg.com/736x/15/26/62/152662373b8c743a65c1ae9f42b8f8a2.jpg">
-->

<!-- <h1>What is HTML</h1> -->


<h2>What is HTML</h2>
<!-- <h3>What is HTML</h3>
<h4>What is HTML</h4>
<h5>What is HTML</h5>
<h6>What is HTML</h6> -->
<p>HTML stands for
<b>
<em>
Hyper Text Markup Language
</em>
</b>, it is used to design
static web content
</p>
<h2>What is CSS</h2>
<p>CSS stands for Cascading Style Sheets, It is used to style/beautify
our content
</p>
<h2>What is JS</h2>
<p>JS stands for Java Script, it is the browser's programming
language</p>

<br>
<label>User Name</label>
<input>
<br>
<label>Password</label>
<input type="password">
<br>
<input type="color">
<input type="date">
<input type="email">
<input type="number" min="10" max="15">
<input type="file">

<a href="https://anubhavtrainings.com">Click here</a>


<br>
<a href="https://anubhavtrainings.com">
<img src="images/anubhavtrainings.png" width="300px"
height="300px">
</a>

<ul>
<li>Apple</li>
<li>Banana</li>
<li>Cherry</li>
</ul>
<ol>
<li>ABAP</li>
<li>SAP UI5</li>
<li>CDS Views</li>
<li>Analytics Cloud</li>
</ol>

</body>
</html>

You might also like