HTML means Hyper Text Markup language, a standard markup language for web pages. HTML will have elements, attributes, and other tags. Most of the websites present on the internet use HTML. HTML is easy to learn and powerful. Hyper Text is the major method of moving around the web by clicking on Hyperlinks, which redirect to another page. Markup shows text inside them using HTML tags by marking a test as a certain type. HTML Command elements are building blocks of an HTML page and can have attributes that provide additional information about the element, and attributes will be present in pairs.
The basic commands are as follows:
Sample HTML documents will have HTML elements which are building blocks of web pages, and some of the HTML elements are , which is a root element, which will have meta information,
Code:
html> <meta> <title>Page Title</title> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p>
Output:
HTML headings are HTML elements that are defined with tags
Sample HTML code with headings as below:
<h1> This is heading 1 </h1> <h2> This is heading 2 </h2> <h3> This is heading 3 </h3> <h4> This is heading 4 </h4>
Output:
HTML paragraph is an HTML element that we define using the
tag, and the sample code is as follows:
<p> This is a paragraph </p> <p> This is another paragraph </p>
Output:
HTML images is an HTML element defined with a tag , and we need to mention attributes such as src of the image, alt means alternative text, width, and height of the image to display, and sample code is
Code:
<img src="HTML-Befehle.jpg" alt="HTML-Befehle" style="max-width:90%">
Output:
HTML lists is an HTML elements and defined using tags
Code:
Output:
HTML table is an HTML element, and it can be defined using tag
and code as below:
Code: Nach dem Login kopieren Nach dem Login kopieren
Output: 7. Mention linkHTML links are HTML elements, and they can be defined using the tag the sample code is below: Code: <a href="https://www.HTML-Befehle.com">This is a link </a> Nach dem Login kopieren Output: 8. Style attributeHTML attribute style can be used with a combination of any HTML elements such as , and the sample code is as below: Code: <p style="color:red"> I am a paragraph </p> Nach dem Login kopieren Output: 9. lang attributeIn HTML, using the lang attribute, we can declare the language of the document using the tag, and language is defined using the lang attribute, and sample code is as below: Code: ... ... Nach dem Login kopieren Output: 10. Format HTML elementsIn HTML, we can use formatting elements to format the HTML document, and we can define special elements for text with special meaning. HTML elements like for bold, for italic Code: <b> This text is bold. </b> Nach dem Login kopieren Output: Intermediate HTML CommandsThe intermediate commands are as follows: 1. Highlight TextIn HTML, we can highlight some text in an HTML document using element so that it highlights the text enclosed in element, and the sample code is as below: <h2> html <mark> Marked </mark> formtting </h2> Nach dem Login kopieren Output: 2. Delete textIn HTML, we can delete some text using <p> My favorite color is <del> Navy blue </del> Red </p> Nach dem Login kopieren Output: 3. Define superscripted textIn HTML, we can define the text as superscripted using element in the HTML document so that text enclosed in element will be superscripted, and the sample code is as below: <p> This is <sup> superscripted </sup> text </p> Nach dem Login kopieren Output: 4. Define abbreviationIn HTML, we can define abbreviations by using the HTML element in the HTML document, which will give useful information to browsers, and the sample code is as below: <p> The <abbr title="World Health Organization">WHO </abbr> was founded in 1948 </p> Nach dem Login kopieren Output: 5. Mention AddressIn HTML, we can mention the address in an HTML document using HTML element , which defines contact information or address related to the article or document and displays in italics and the sample code as below:<address> Written by Srinivas <br> dasu.com <br> Pincode : 500084, Hyderabad <br> India </address> Nach dem Login kopieren Output: Advanced HTML CommandsThe advanced commands are as follows: 1. Display a webpage inside a webpageIn HTML, we can display a webpage inside a webpage using HTML iframe, which is defined using the tag <iframe src="demo.html" height="300" width="300"> </iframe> Nach dem Login kopieren 2. Target different targets using iframeIn HTML, we can use the target frame as a link using the iframe tag in the HTML document, and the target attribute to the link must refer to the name attribute of the iframe and sample code is as below: <iframe src="demo.html" name="iframe1"> </iframe> <p> <a href="www.google.com" target="iframe1"> Google.co.in </a> </p> Nach dem Login kopieren Tips and Tricks to Use HTML Commands
ConclusionFinally, it’s all about different types of HTML commands of various levels are briefly discussed with examples. After reading this article, I hope you will have a good idea of how to use HTML commands. |
Das obige ist der detaillierte Inhalt vonHTML-Befehle. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!