Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

Author name: Umakant Yadav

Umakant Yadav is a website devloper in codeapka you can contact him at mobile no. +919453619260. We have 5 years experience in php, codeigniter and wordpress.

HTML Tables

HTML Table

A simple HTML table: Here is an example of a simple HTML table with two rows and three columns: <table>   <tr>     <th>Column 1</th>     <th>Column 2</th>     <th>Column 3</th>   </tr>   <tr>     <td>Row 1, Column 1</td>     <td>Row 1, Column 2</td>     <td>Row 1, Column […]

HTML Table Read More »

HTML lists

HTML lists

HTML lists An ordered and unordered HTML list An unordered HTML list: *Item *Item *Item *Item An ordered HTML list: 1 First item 2 Second item 3 Third item 4 Fourth item   Unordered HTML List(HTML lists) An unordered list starts with the <ul> tag. Each list item starts with the <li> tag. The list

HTML lists Read More »

HTML Class

HTML Class

HTML Class Using The class Attribute Theclassattribute is used in HTML and CSS to apply styles to specific elements on a web page. By adding aclassattribute to an HTML element, you can specify a name for that element which can then be used to apply styles to it in a CSS stylesheet. Here’s an example

HTML Class Read More »

HTML id

HTML id

HTML id Using The id Attribute Theidattribute is an HTML attribute that is used to specify a unique identifier for an element on a web page. It is often used in combination with CSS and JavaScript to target specific elements for styling or manipulation. To use theidattribute, you simply add it to the opening tag

HTML id Read More »

HTML Iframes

HTML Iframes

HTML Iframes Syntax The syntax for creating an HTML iframes is as follows: <iframe src=”URL” frameborder=”0″ width=”width” height=”height”></iframe> where: src: specifies the URL of the page to be embedded in the iframe. frameborder: sets whether or not to display a border around the iframe. A value of0means no border will be displayed. width: sets the

HTML Iframes Read More »

HTML Javascript

HTML Javascript

HTML Javascript The HTML script Tag The HTML script tag is used to define client-side scripts, such as JavaScript, within an HTML document. The script tag can be used to load an external script file or to include JavaScript code directly in the HTML document. Here is an example of how to use the script

HTML Javascript Read More »

HTML Head

Delving into the HTML Head: An Essential Guide

While frequently underestimated, the HTML head section assumes a critical role in molding the web page’s visual aesthetics, functionality, and accessibility; functioning as a reservoir for metadata, it imparts vital information about the document to browsers, search engines, and other web technologies. Unveiling the Significance: The Purpose of the HTML Head The HTML-head serves several

Delving into the HTML Head: An Essential Guide Read More »

CSS Intro

CSS Intro

Unveiling the Aesthetics: A Comprehensive CSS Introduction for Web Styling Mastery Cascading Style Sheets, commonly abbreviated as CSS, functions as a specialized style sheet language, exclusively designed to format HTML elements and dictate their presentation on various mediums such as screen, paper, and other forms of media. CSS can be used to style text, fonts,

CSS Intro Read More »

CSS Syntax

CSS Syntax

CSS Syntax: Mastering the Language of Style CSS, or Cascading Style Sheets, is the backbone of web design, allowing developers to transform a plain HTML document into a visually stunning website. Understanding CSS syntax is crucial for any web developer, as it lays the foundation for styling and formatting web pages. In this article, we’ll

CSS Syntax Read More »

CSS Selectors

CSS Selectors

CSS Selectors: Targeting the Elements You Want to Style Without the precise targeting of CSS selectors, web design would remain a chaotic jumble of pixels, lacking the visual hierarchy and aesthetic cohesion we expect from today’s websites. These powerful tools allow you to pinpoint the exact HTML elements you want to apply your CSS rules

CSS Selectors Read More »

Scroll to Top