Javascript

Chapter 21: Navigation Bars

Basic Navigation Bar Navigation bars are essentially a list of links, so the ul and li elements are used to…

3 years ago

Chapter 20: Sectioning Elements

Nav Element The <nav> element is primarily intended to be used for sections that contain main navigation blocks for the…

3 years ago

Chapter 19: Div Element

The div element in HTML is a container element that encapsulates other elements and can be used to group andseparate…

3 years ago

Chapter 18: Forms

AttributeDescriptionaccept-charsetSpecifies the character encodings that are to be used for the form submission.actionSpecifies where to send the form-data when a…

3 years ago

Chapter 17: Input Control Elements

ParameterDetailsclassIndicates the Class of the inputidndicates the ID of the inputtypeIdentifies the type of input control to display. Acceptable values…

3 years ago

Chapter 16: Image Maps

Tag/AttributeValue<img>Below are the image map-specific attributes to use with <img>. Regular <img> attributes apply.usemapThe name of the map with a…

3 years ago

Chapter 15: Images

ParametersDetailssrcSpecifies the URL of the imagesrcsetImages to use in different situations (e.g., high-resolution displays, small monitors, etc)sizesImage sizes between breakpointscrossoriginHow…

3 years ago

Chapter 14: Using HTML with CSS

CSS provides styles to HTML elements on the page. Inline styling involves usage of the style attribute in tags, and…

3 years ago

HTML 5 Notes For Professional – Chapter – 13: Include JavaScript Code in HTML

AttributeDetailssrcSpecifies the path to a JavaScript file. Either a relative or absolute URL.typeSpecifies the MIME type. This attribute is required…

3 years ago

HOW TO CONVERT FORMDATA TO JSON OBJECT

Recently, whilst working on a project I needed to take HTML FormData and then convert it to JSON to be…

4 years ago