My Blog

    • Sample Page
Illustration of a bird flying.
  • HTML iframes

    HTML Iframe is used to display a nested webpage (a webpage within a webpage). The HTML <iframe> tag defines an inline frame, hence it is also called as an Inline frame. An HTML iframe embeds another document within the current HTML document in the rectangular region. The webpage content and iframe contents can interact with…

    October 21, 2022
  • HTML Id Attribute

    The id attribute is used to specify the unique ID for an element of the HTML document. It allocates the unique identifier which is used by the CSS and the JavaScript for performing certain tasks. Syntax: Example 1: The following example describes how to use the id attribute in CSS document: Output: Example 2: The following example describes how to use the ID…

    October 21, 2022
  • HTML Classes

    Class Attribute in HTML The HTML class attribute is used to specify a single or multiple class names for an HTML element. The class name can be used by CSS and JavaScript to do some tasks for HTML elements. You can use this class in CSS with a specific class, write a period (.) character,…

    October 21, 2022
  • HTML style using CSS

    Let’s suppose we have created our web page using a simple HTML code, and we want something which can present our page in a correct format, and visibly attractive. So to do this, we can style our web page with CSS (Cascading Stylesheet) properties. CSS is used to apply the style in the web page…

    October 21, 2022
  • HTML form Attribute

    HTML <form> element attributes In HTML there are various attributes available for <form> element which are given below: HTML action attribute The action attribute of <form> element defines the process to be performed on form when form is submitted, or it is a URI to process the form information. The action attribute value defines the…

    October 21, 2022
  • HTML Form Input Types

    In HTML <input type=” “> is an important element of HTML form. The “type” attribute of input element can be various types, which defines information field. Such as <input type=”text” name=”name”> gives a text box. Following is a list of all types of <input> element of HTML. type=” “ Description text Defines a one-line text…

    October 20, 2022
  • HTML Form

    An HTML form is a section of a document which contains controls such as text fields, password fields, checkboxes, radio buttons, submit button, menus etc. An HTML form facilitates the user to enter data that is to be sent to the server for processing such as name, email address, password, phone number, etc. . Why use HTML Form HTML…

    October 20, 2022
  • HTML Description List | HTML Definition List

    HTML Description List or Definition List displays elements in definition form like in dictionary. The <dl>, <dt> and <dd> tags are used to define description list. The 3 HTML description list tags are given below: Output:HTMLis a markup languageJavais a programming language and platformJavaScriptis a scripting languageSQLis a query language Supporting Browsers Element  Chrome  IE  Firefox…

    October 20, 2022
  • HTML Unordered List | HTML Bulleted List

    HTML Unordered List or Bulleted List displays elements in bulleted format . We can use unordered list where we do not need to display items in any particular order. The HTML ul tag is used for the unordered list. There can be 4 types of bulleted list: To represent different ordered lists, there are 4 types…

    October 20, 2022
  • HTML Ordered List | HTML Numbered List

    HTML Ordered List or Numbered List displays elements in numbered format. The HTML ol tag is used for ordered list. We can use ordered list to represent items either in numerical order format or alphabetical order format, or any format where an order is emphasized. There can be different types of numbered list: To represent different…

    October 20, 2022
←Previous Page
1 … 109 110 111 112 113
Next Page→

My Blog

Proudly powered by WordPress