Posts

html basics

  < !DOCTYPE  html > < html > < body > < h1> THIS A WORLD  < /h1 > < p > we change it. < /p > <h2>table<h2/> table making by html you want use(<table>,<th>,<tr> <h3>example<h3/> < table >    < tr >      < th > name < /th >      < th > age < /th >      < th > Country < /th >    < /tr >    < tr >      < td > sampath senanayake < /td >      < td > 43 < /td >      < td > Germany < /td >    < /tr >    < tr >      < td > harry potter < /td >      < td > 12 < /td >      < td > Mexico < /td >    < /tr > < /table >...

YONAL DEEGALA

Image
  WHAT IS HTML? The  HyperText Markup Language  or  HTML  is the standard  markup language  for documents designed to be displayed in a  web browser . It defines the meaning and structure of  web content . It is often assisted by technologies such as  Cascading Style Sheets  (CSS) and  scripting languages  such as  JavaScript . Web browsers  receive HTML documents from a  web server  or from local storage and  render  the documents into multimedia web pages. HTML describes the structure of a  web page   semantically  and originally included cues for its appearance. HTML elements  are the building blocks of HTML pages. With HTML constructs,  images  and other objects such as  interactive forms  may be embedded into the rendered page. HTML provides a means to create  structured documents  by denoting structural  semantics  for text such...

HTML WEB PAGE - RONAL FERNANDO

HTML Basics Learning HTML Basics What is HTML? HTML (HyperText Markup Language) is the standard markup language for creating the structure of a web page. It is used to describe the content and elements on a webpage, such as text, images, links, forms, and more. Tags of HTML HTML uses tags to define and structure content. Tags are enclosed in angle brackets and come in pairs, usually an opening tag and a closing tag. Some common HTML tags include: <html> <head> <title> <body> <h1>, <h2>, ..., <h6> <p> <a> <img> Functions of HTML HTML serves various functions in web development, including: Defining the structure of a webpage. Creating hyp...

vidun

HTML Basics HTML Basics Introduction HTML (HyperText Markup Language) is the standard markup language for creating web pages. It describes the structure of a web page using markup elements or tags. Basic HTML Structure The basic structure of an HTML document includes the following elements: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Your Page Title</title> </head> <body> <!-- Your content goes here --> </body> </html> Common HTML Tags Here are some common HTML tags: <h1>Heading 1</h1> <p>This is a paragraph.</p> <a href="https://www.example.com">Link</a> <img src="image.jpg" alt="Description"> <ul> <li>List item 1...

Learn HTML - Dasun Nilanjana

Welcome to HTML Basics 1. Basic Structure of HTML HTML, which stands for HyperText Markup Language, is the standard markup language for creating web pages. The basic structure of an HTML document includes the following elements: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Your Page Title</title> </head> <body> </body> </html> 2. Basic Text Formatting Tags HTML provides various tags for text formatting. For example, use <strong> for bold text and <em> for italic text: <p>This is a <strong>bold</strong...

HTML - Text Formatting (Yugeeth_W) {CODE}

<!DOCTYPE html> <head> <title>HTML - Text Formatting (Yugeeth_W)</title> </head> <body> <b>Bold</b> <i>Italic</i> <strong>Strong</strong> <em>Emphasis</em> <h1>Heading 1</h1> <h2>Heading 2</h2> <h3>Heading 3</h3> <h4>Heading 4</h4> <h5>Heading 5</h5> <h6>Heading 6</h6> <big>Big</big> <small>Small</small> <sup>Superscript</sup> <sub>Subscript</sub> <del>Deleted</del> <ins>Inserted</ins> <code>Coding</code> <tt>Typewriter</tt> <marquee behavior="" direction="right">Animated</marquee> <p>Paragraph</p> <div>Division</div> <span>Spanning Area</span> <Address...