HTML Elements
HTML elements are building blocks of web pages, consisting of an opening tag, content, and a closing tag.The HTML element is everything from the start tag to the end tag.
Syntax:
<tag_name>This is my content</tag_name>
Examples of some HTML Elements are below:
Heading tag
<h1>My First HTML heading.</h1>
Output:

Paragraph tag
<p>My First HTML paragraph.</p>
Output:


Note: Some HTML elements have no content.These elements are called empty elements, like <br> and <hr>.
Nested HTML Elements:
- Yes HTML elements can be nested.(This means one elements can be in side another element).
- All HTML documents consist of nested HTML elements.
The following example shows Nested HTML elements.(<html>
, <body>
, <h1>
and <p>
),
<!DOCTYPE html>
<html>
<body>
<h1>This is Heading</h1>
<p>This is paragraph.</p>
</body>
</html>
Output :

- Home
- Java
- Java Fundamentals
- What is Java
- History of Java
- Java Version History
- Local Environment Set-up
- First Java Program
- How to set ‘Path’ env variable
- JDK, JRE, and JVM
- Object Oriented Programming
- Java Data Types
- Classes in Java
- Objects in Java
- Interfaces in java
- Class attributes and methods
- Methods In Java
- Variables and Constants in Java
- Java packages and Imports
- Access Modifiers In Java
- Java Operators
- Constructors in Java
- Control Statements – If else
- Control Statements – Loops
- Arrays in Java
- Java Abstraction
- Java Inheritance
- Polymorphism
- Java Exception Handling
- Strings in Java
- File IO
- Java Miscellaneous
- Design Patterns
- Java Fundamentals
- Collections
- Multithreading
- Java New Features
- Servlet
- JSP
- Spring
- Hibernate
- Architecture
- Hibernate Example
- First Hibernate Application (using xml configuration)
- First Hibernate Application (using annotations)
- JPA/HB – annotations
- Hibernate Identifiers
- Hibernate Generator Classes
- Save vs saveOrUpdate vs persist in Hibernate
- Inheritance Mapping in Hibernate
- Inheritance Mapping using annotations
- Hibernate Mapping
- Hibernate Query Language (HQL)
- HCQL Hibernate Criteria Query Language
- Hibernate Named Query
- Hibernate Caching
- Second Level Cache
- Spring Boot
- Spring Boot Basics
- Spring Boot Web
- Spring Boot Exception Handling
- Service discovery using Netflix Eureka
- Spring Boot with Swagger3
- Zuul Proxy Server + Routing
- Spring Boot Security
- Circuit Breaker using Spring Boot Hystrix
- Interservice Communication
- Spring Boot Hateoas Links Example
- Lombok api
- Spring Boot with Mongo DB
- Load Balancer in Springboot
- Spring Boot Testing
- Spring Web Flux
- Database
- Web Service
- HTML
- Blog & Programs
- Docker
- Trainings