Posts

Showing posts from August, 2026

WELCOME TO BRAINTECHNOLOGY

Image
 

HTML CLASS

Image
  HTML Colors HTML colors are specified with  Predefined color names,  RGB,  HEX,  HSL,  RGBA, or HSLA values. Color Names In HTML, a color can be specified by using a color name: Tomato Orange DodgerBlue MediumSeaGreen Gray SlateBlue Violet LightGray HTML supports 140 standard color names . Background Color You can set the background color for HTML elements: Hello World Example < h1 style ="background-color:DodgerBlue;" > Hello World < /h1 > < p style ="background-color:Tomato;" > Lorem ipsum... < /p > Text Color You can set the color of text: Hello World Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Example < h1 style ="color:Tomato;" > Hello World < /h1 > < p style ="color:DodgerBlue...

HTML CLASS

Image
      HTML INTRODUCTION What is HTML? HTML stands for Hyper Text Markup Language HTML is the standard markup language for creating Web pages HTML describes the structure of a Web page HTML consists of a series of elements HTML elements tell the browser how to display the content HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc. HTML Editors A simple text editor is all you need to learn HTML. Learn HTML Using Notepad or TextEdit Web pages can be created and modified by using professional HTML editors. However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac). We believe that using a simple text editor is a good way to learn HTML. Follow the steps below to create your first web page with Notepad or TextEdit. Step 1: Open Notepad (PC) Windows 8 or later: Open the Start Screen (the window symbol at the bottom left on your screen). Type Notepad . Windows 7 or ...