Posts

Showing posts from June, 2024

HTML Introduction - Besic of html language

HTML Introduction HTML (HyperText Markup Language) is the standard language used to create and design web pages. It forms the structure of web content and is essential for web development. Below are some basic details and concepts about HTML: 1. HTML Structure An HTML document is composed of elements, which are the building blocks of web pages. These elements are represented by tags, which define the content and structure of the web page. 2. Basic HTML Document Here's a simple example of an HTML document: HTML CODE <!DOCTYPE html> <html> <head>     <title>My First HTML Page</title> </head> <body>     <h1>Hello, World!</h1>     <p>This is a paragraph.</p> </body> </html> 3. Key Components - <!DOCTYPE html> : This declaration defines the document type and version of HTML. - <html> : The root element that contains all other HTML elements. - <head> : Contains meta-information about the do