Lorem ipsum dolor sit amet, consectetur adipiscing elit. Test link

heading,pragraphs,lists,links,images code of html

 Belajar HTML Dasar, Ternyata Gampang Banget!

  1. Headings: Headings are used to indicate the hierarchy of content on a webpage. There are six levels of headings, ranging from <h1> (the most important) to <h6> (the least important). For example:
<h1>This is a level 1 heading</h1> <h2>This is a level 2 heading</h2> <h3>This is a level 3 heading</h3>
  1. Paragraphs: Paragraphs are used to contain blocks of text. You can create a paragraph in HTML by enclosing the text in <p> tags. For example:
<p>This is a paragraph of text.</p>
  1. Lists: There are two types of lists in HTML: ordered lists (numbered) and unordered lists (bulleted). You can create a list by using the <ol> or <ul> tags, and then using <li> tags to define each list item. For example:
<ul> <li>List item 1</li> <li>List item 2</li> <li>List item 3</li> </ul>
  1. Links: Links are used to allow users to navigate between pages on the web. You can create a link in HTML using the <a> tag and the href attribute. For example:
<a href="http://www.example.com">This is a link</a>
  1. Images: You can insert an image into an HTML document using the <img> tag. You'll need to use the src attribute to specify the source file for the image, and you can use the alt attribute to provide a text description of the image. For example:
<img src="image.jpg" alt="A description of the image">

thank you for your time for the spirit of learning.

Posting Komentar