krishna337
krishna337
KrTricks
122 posts
Learn Free Coding Programming
Don't wanna be here? Send us removal request.
krishna337 · 3 years ago
Text
HTML ins Tag
The HTML <ins> tag is used to define a newly inserted text in an HTML document. The web browser renders this inserted text as an underline and you can also change it through the text-decoration property of CSS. The <del> element defines the part of the text that has been deleted and <ins> defines the part of the text that has been inserted to the…
Tumblr media
View On WordPress
3 notes · View notes
krishna337 · 3 years ago
Text
HTML i Tag
The HTML<i> tag is used to represent the technical term, phrase, the important word in a different language. The content under the <i> tag is displayed in italic format. Syntax <i>Your Content</i> Example <!doctype html> <html> <head> <title>HTML tag</title> </head> <body> <h2>HTML <i> tag example</h2> <p>This paragraph is not written in the <i> tag</p> <i><p>This paragraph is written inside the…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML html Tag
The <html> tag is used to represent the root of an HTML document. It is a container of all elements (except for the <!DOCTYPE> tag). It tells the browser that it is an HTML document. Syntax <html>Elements...</html> Example <!DOCTYPE html> <html> <head> <title>HTML tag</title> </head> <body> <h2>HTML tag example</h2> <p>Your…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML hr Tag
The HTML <hr> tag is used to define a horizontal line or rule to separate content in an HTML page. The <hr> tag is an empty tag and this tag does not require an ending tag. Syntax <hr> Example <!doctype html> <html> <head> <title>HTML Hr Tag</title> </head> <body> <h1>What Is HTML?</h1> <p>HTML stands for Hyper Text Markup Language, which is the most popular language on web and the language is…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML header Tag
The HTML <header> tag is used as a container that contains introductory content or a group of navigational links. It may contain some elements, logo or heading, author information icons, or a search form.  Syntax <header> header content... </header> Example <!doctype html> <html> <head> <title>HTML Header Tag</title> </head> <body> <article> <header> <h1>Article Heading</h1> <p>Posted by…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML head Tag
The HTML <head> tag is used as a container that contains metadata(document title, links, scripts, style, and other meta-information) and the metadata content not displayed on the webpage. This tag is used between the <html> tag and <body> tag. Syntax <head> head tag contents... </head> You can use the following elements inside the head…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML H1 to H6 Tag
HTML H1 to H6 Tag
The heading tags are used to define HTML headings. There are six levels of headings H1, H2, H3, H4, H5, and H6. The H1 is the highest (or most important heading) and the smallest H6. Syntax <h1>heading</h1> to <h6>heading</h6> Example <h1>Heading 1</h1> <h2>Heading 2</h2> <h3>Heading 3</h3> <h4>Heading 4</h4> <h5>Heading 5</h5> <h6>Heading 6</h6> Try It Now Output: Global Attributes The <h1> to…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML frameset Tag
The <frameset> tag is used to define the group of frames. It is used to specify the number of rows and columns in <frameset> and how many percent or pixels it will occupy in a frame. We can add one or more frames in the <frameset> element. Not Supported In HTML5 Do not use this tag because it is not supported in HTML5. You can use the <iframe> tag instead of this element. Syntax <frameset…
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML frame Tag
The <frame> tag is used to divide the webpage into multiple sections where each section can contain different web pages. The <frame> tag is used with the <frameset> element.   Not Supported In HTML5 Do not use this tag because it is not supported in HTML5. You can use the <iframe> tag instead of this tag. Syntax <frame src="URL" /> Example <!DOCTYPE html> <html> <head> <title>HTML Frame…
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML form Tag
The HTML <form> tag is used to create a form on an HTML document that contains interactive controls for submitting information. The form element can contain text fields, buttons,check-boxes, radio buttons, and more   Syntax <form> Form content... </form> Example <!doctype html> <html> <head></head> <body> <form action="#" target="_blankmethod="get"> <label for="fname">First Name:</label> <input…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML Footer Tag
The <footer> tag defines a footer for a HTML document.It contains copyright information, contact information,links, etc. Syntax <footer>Footer content...</footer> Example <!doctype html> <html> <head></head> <body> <h1> HTML FOOTER TAG </h1> <div> This is an example of HTML footer element. </div> <footer> <div> <a href="#">About</a> <a href="#">Contact</a> <a…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Photo
Tumblr media
What is the name of this language? 😉 Follow For More Coding & Programming Related Posts - @krtricks @krtricks @krtricks Tags - #coding #programmer #coder #html #css #web #webdesigner #webdevelopment #website #technology #knowledge #facts #know #knowledgeispower #designer #webdeveloper #devloper #developer #new #programming #programmers #programmer #htmlcoding #htmltags #htmlcss https://www.instagram.com/p/Cc-39I0qPwO/?igshid=NGJjMDIxMWI=
1 note · View note
krishna337 · 3 years ago
Text
HTML font Tag
The HTML <font> tag is used to define the font size, color, and face of text in a document. This tag has been removed from HTML5. We can use CSS properties instead of font tag such as font-family, font-size and color to format the text. Not Supported in HTML5.   Syntax <font>Text Content...</font> Example <!DOCTYPE html> <html> <head> <title>HTML font tag example </title> </head> <body> <h2>Font…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML figure Tag
The HTML <figure> tag is used to specify self-contained content, like illustrations, diagrams, photos, listings, etc in document.You can add caption of this element with the help of <figcaption> tag. Syntax <figure>Image....</figure> Example <figure> <img src="/image/logo.png"> <figcaption>KrTricks Logo</figcaption> </figure> Output: Global Attributes The <figure> tag supports the Global…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML figcaption Tag
The HTML <figcaption> tag defines the caption of <figure> element. it can be used as the first or last child of the <figure> element. Syntax <figcaption>Caption...</figcaption> Example <figure> <img src="/image/logo.png"> <figcaption>KrTricks Logo</figcaption> </figure> Output: Global Attributes The <figcaption> tag supports all the Global Attributes in HTML. Event Attributes The <figcaption>…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML fieldset Tag
The HTML <fieldset> tag is used to create a group of related elements in HTML form.Use the <legend> tag to define caption or title of the fieldset element.The <fieldset> tag create a box around the related elements. Syntax <fieldset>Content...</fieldset> Example <!DOCTYPE html> <html> <head> <title>HTML fieldset Tag</title> <style> fieldset{ padding:15px; background:…
Tumblr media
View On WordPress
0 notes
krishna337 · 3 years ago
Text
HTML embed Tag
The HTML <embed> tag is used to embed external content such as a web page, image, media player, web application etc in an HTML document. This element is new in HTML5. Syntax <embed src="" /> Example <!DOCTYPE html> <html> <head> <title>HTML Embed Tag</title> </head> <body> <h2>HTML embed tag example</h2> <p>Add image using embed tag</p> <embed src="mylogo.png" style="border:1px solid #000;"…
Tumblr media
View On WordPress
0 notes