Skip to main content

Basic html tags

 Basic html tags

         Here is a list of some basic HTML elements that you might use when creating a webpage:

Headings tags :

<h1> to <h6>: These elements represent headings of different sizes, with <h1> being the largest and <h6> being the smallest tag 

Paragraph tag:

<p>: This element represents a paragraph of text.

<br>tag:

<br>: This element represents a line break.

<hr>tag:

<hr>: This element represents a horizontal rule, or a line that runs across the width of the page.

<ul> And <ol>tags:

<ul> and <ol>: These elements represent an unordered (bulleted) list and an ordered (numbered) list, respectively. Each item in the list is represented by an <li> element.

<a>tag:

<a>: This element represents a hyperlink to another webpage or a specific location on the current webpage.

<img>tag:

<img>: This element represents an image.

<div> And <span>tag:

<div> and <span>: These elements are used to group and style HTML elements. <div> is a block-level element, while <span> is an inline element.

<form> tag:

<form>: This element represents a form that users can fill out and submit.

<input>tag:

<input>: This element represents an input field where users can enter data. There are many different types of input fields, such as text fields, checkboxes, and radio buttons.

Comments

Popular posts from this blog

Introduction of php and it's features

 what is php ? what is features of php language? Introduction of PHP  PHP is a server site scripting language. which we use to create a dynamic  content, website  and web application.  PHP language is develop by Rasmus Lerdorf in 1994. In this time, PHP is a most popular scripting language. Most popular website as facebook and yahoo developed by php language. Features of PHP Php is a most popular and secondary used for world wide scripting language. there are many features of php language:- simple and easy to learn open source error reporting faster case sensitive loosely type language independent plateform Simple And easy to learn PHP is a very simple to use read and write.PHP language understandable and user-friendly. user and developer easily identify PHP code. Interpreted language PHP is an interpreted language, which means there is no need for compilation. Interpreters run through a program line by line and execute the code. PHP language no need of compiler...

How to create a table in html

  Hello dosto 🙏🙏 Aaj ham dekhenge ki kaise html Me table create karte hai . Create A Table In Html: Html me table create karne ke liye  for example ham student name ki table banayenge:- <!DOCTYPE html> <html> <head> <Title>Creating a table</title> </head> <body> <table border="1" cellspacing="0"> <tr> <tr>student table</tr> <th>name</th> <th>class</th> <th>address</th> </tr> <tr> <td>ram</td> <td>bca</td> <td>rampur</td> </tr> </tr> </table> </body> </Html> Coding karne ke baad apka Student name ki table ban Jati hai If this information is helpful, To aisi hi coding sekhna chahte to neeche comments kare Thanks 

Introduction of Java and it's features

 Describe about Java language. Write introduction of java with example? What is Java? Introduction of Java  Java is a popular programming language that is used for developing a wide range of applications, including web, mobile, desktop, and backend applications. It is an object-oriented language that is designed to be simple and easy to learn, with a syntax that is similar to English. Java is known for its portability, as the same Java code can be used to run programs on different types of computers and devices. Java is also used in Android app development, as the Android operating system uses a variant of Java as its primary programming language. Java has a large and active community of developers, and there are many libraries, frameworks, and tools available for Java developers to use. Syntax : Class  class name{ Public static void main (String[] args){  statement; }} Example: public class Example {   public static void main(String[] args) {     ...