Category: HTML Tutorial

HTML Tutorial

HTML Marquee tag

The <marquee> tag is an HTML element that was used in earlier versions of HTML to create a scrolling or moving text or image within a web page. It was primarily employed to add dynamic and attention-grabbing effects to text or images. The content within the <marquee> tag would continuously move across the screen in […]

Rekha Setia 
HTML Tutorial

HTML Headings

In HTML (Hypertext Markup Language), heading tags are used to define headings or titles within a document. Headings provide structure and hierarchy to your content, indicating different levels of importance. HTML offers six levels of heading tags, ranging from <h1> to <h6>, where <h1> is the highest level and <h6> is the lowest. Here’s an […]

Rekha Setia 
HTML Tutorial

HTML Tables

In HTML, you can create tables using the <table>, <tr>, <td>, and <th> tags. Here’s a basic example of an HTML table(with css): <!DOCTYPE html> <html> <head>     <style>         table {             width: 100%;             border-collapse: collapse;             margin-bottom: 20px;         }         th, td {             border: 1px solid #dddddd;             text-align: left; […]

Rekha Setia 
HTML Basics with Example
HTML Tutorial

HTML Basics with Example

  The Basics of HTML – Learn How to Create a Basic HTML Web Page       If you know how to code HTML, you have the basis to design any Web site. HTML, a text document that is used by Web browsers to present text, graphics and pictures, stands for the Hyper Text […]

Rekha Setia