Dular SharmaDular SharmaDular Sharma
(Monday - Saturday)
sharmadular7392@gmail.com
Himatnagar
Dular SharmaDular SharmaDular Sharma

Technology

Chapter 2. Font Properties

10 ViewsCSS font properties offer developers the ability to customize the appearance and style of text on a webpage. These properties enable adjustments to the size, style, color, and more. For example, developers can emphasize specific text by making it bold. Likewise, changing the font style from normal (straight) to italics (tilted) is also achievable. […]
Read more

Chapter 1. External Stylesheet

13 ViewsYou can apply an external CSS stylesheet to multiple HTML documents by using a <link> element in each HTML file. In the <link> tag, set the rel attribute to “stylesheet” and the href attribute to the relative or absolute path of the stylesheet. While it’s generally preferred to use relative URL paths, absolute paths […]
Read more

Chapter 16. Forms, Get/Post, Action

12 Views Attributes Description accept-charset Determines which character encodings should be used for form submission. action Specifies the URL where the form data should be sent upon submission. autocomplete Controls whether the browser should enable or disable autocomplete for the form fields. enctype Defines how the form data should be encoded before sending it to […]
Read more

Chapter 15. Images in HTML

12 Views Parameters Description src Specifies the URL of the image. srcset Provides images for different scenarios (e.g., high-resolution displays, small monitors, etc.). sizes Defines image sizes between breakpoints. crossorigin Determines how the element handles crossorigin requests. usemap Specifies the name of the image map to use. ismap Indicates whether the image is a server-side […]
Read more

Chapter 14. Utilizing HTML in Conjunction with CSS

11 ViewsCSS enriches the presentation of HTML elements within a webpage. Inline styling, executed through the style attribute within tags, is generally discouraged. Internal stylesheets, facilitated by the <style> tag, allow for the declaration of rules pertinent to specific sections of the page. Additionally, external stylesheets can be incorporated via the <link> tag, linking to […]
Read more

Chapter 13. Incorporating JavaScript in HTML

12 Views Attribute Specification src Specifies the path to a JavaScript file, either relative or absolute. type Defines the MIME type; mandatory in HTML4, optional in HTML5. async Executes the script asynchronously (for external scripts); no value required except in XHTML. defer Executes the script after page parsing is complete (for external scripts); no value […]
Read more

Chapter 12. Resource Linking

14 ViewsAttribute Breakdown: Attribute Description charset Identifies the character encoding of the linked document. crossorigin Determines how the element handles requests from different origins. href Specifies the location of the linked document. hreglang Indicates the language used in the linked document’s text. media Specifies the device on which the linked document will be displayed, commonly […]
Read more

Chapter 11. Data Attributes

15 ViewsCreated by Dhruv Mahant Last updated: yesterday at 4:51 PM 1 min readSee how many people viewed this page Value Description somevalue entry denotes the purpose of the attribute, specifying its value as a string. Compatibility with Older Browsers: Data attributes were introduced with HTML5, a standard widely supported by modern browsers. However, older browsers predating […]
Read more
Need Help?