Download Article Download Article

This wikiHow teaches you how to create a webpage using HTML. Some elements of your webpage can include text, links, and images.

Part 1
Part 1 of 7:

Preparing to Write

Download Article
  1. When writing in HTML, different elements of the page are indicated by open tags (<>) and closed tags (</>), with the text for an element fitting in between the tags.
    • For example, a paragraph is created by typing the open paragraph tag (<p>), entering the text that you want to use, and then entering a closed paragraph tag </p>.
    • Each line of code must go on its own line, so you'll normally press Enter after writing a line of code.
    Advertisement
  2. For any HTML document that you create, you'll start the document with a "document type" tag (<!DOCTYPE html>), an HTML tag (<html>), and a BODY tag (<body>). You'll also end the document with a closed BODY tag and then a closed HTML tag. For example:
    • <!DOCTYPE html>
    • <html>
    • <body>
    • </body>
    • </html>
  3. Consider learning about CSS. CSS is a language that acts as a complement to HTML; it covers page formatting (e.g., colors, centered text, etc.) and other visual aspects of the webpage.
  4. Advertisement
Part 2
Part 2 of 7:

Creating a Text Page

Download Article
  1. Add your document's initial HTML text:
    • <!DOCTYPE html>
    • <html>
    • <body>
  2. This is also known as the "head", and it defines the text that appears on the browser's tab. Add the following text to your document to do so, making sure to replace "Your Title" with your preferred text:
    • <head>
    • <title>Your Title</title>
    • </head>
  3. Type in <h1>Text</h1> and press Enter. You can place any text that you want to use between the <h1> and </h1> tags.
    • Headers can be stacked throughout the page. For each header you use after the first one, just increase the number (e.g., for the second header, use <h2></h2>).
  4. Type in <p>Text</p> and press Enter, making sure to replace "Text" with your paragraph's text.
    • You can place each line of text on a new line by repeating the <p></p> tags for each line of text.
  5. You can add as many headers and paragraphs to your webpage as you like.
  6. Type in <br>Text</br> and press Enter. This will create page gaps between your paragraphs if you want to space different parts out.
  7. You can use different tags inside of the <p></p> tags (for example, <p><em></em></p>) to indicate formatting:
    • <em>text</em> - Creates italic text.
    • <strong>text</strong> - Creates bold text.
    • <ins>text</ins> - Creates underlined text.
    • <del>text</del> - Creates text with a line through it.
    • <small>text</small> - Creates small text.
    • <!---text---> - Creates invisible text. Used for adding notes to your webpage.
  8. When you're finished adding text, type in </body> and press Enter, then type in </html> to close out the document. Now that your text page is technically complete, you can add other things like links, bullet points, and images to it.
  9. Advertisement
Part 3
Part 3 of 7:

Adding Links

Download Article
  1. If you want to add a link to a webpage in the middle of a paragraph, for example, you'd go to that paragraph and find the word or phrase that you want to use as the link.
  2. Go to the website to which you want to link, then select its address in the bar near the top of the window and press Ctrl+C (Windows) or Command+C (Mac).
  3. Type <a href=> into the space directly before the word or phrase that you want to use as a link.
  4. Click between the href= and the > and then press Ctrl+V (Windows) or Command+V (Mac). You should see the link appear to the right of the href= text.
    • For example, if you're linking to YouTube, you'd see <a href=https://www.youtube.com/> here.
  5. On the other side of the text that you want to use as a link, type in </a>. For example, in a line that says "Follow me on Twitter" where you're linking to Twitter and using "on Twitter" as the link, your code would resemble the following:
    • <a href=https://www.twitter.com/>on Twitter</a>
  6. ID tags allow you to link one piece of text to another section in a different paragraph on the same page. To do so:
    • Replace the <p> tag with <p id=text>
    • Find the text that you want to use as a link.
    • Type <a href=#text> before the text. Make sure that the text after "#" matches the text after "id=" here.
    • Type </a> after the text.
  7. Advertisement
Part 4
Part 4 of 7:

Adding Bullet Points

Download Article
  1. Bullet points are best-suited for listing information or creating organized steps. Once you've found a paragraph beneath which you want to add bullet points, proceed.
  2. Above the place where you want to put your bulleted list, type in <br> and press Enter.
  3. Type in <li>text</li> and press Enter, making sure to replace "text" with your bullet point's text.
  4. As long as you're using the <li></li> tags around lines of text, the text between the tags will be formatted as a bullet point.
  5. Type in <ul>text</ul> and press Enter. Your text will appear indented below the previous bullet point.
    • Text with the <ul></ul> tags won't have a bullet before it.
  6. If you chose to use a page break earlier, type in </br> and press Enter. Your bulleted list will stand alone on the page.
  7. Advertisement
Part 5
Part 5 of 7:

Adding Images

Download Article
  1. The image will appear on the webpage wherever you insert the code for the image.
  2. To do so, type in <img but don't press Enter. Since the "image" tag is a complete tag in and of itself, it doesn't need a closing tag.
  3. Type in src= after the <img tag, making sure to place a space between "img" and "src".
  4. Copy the URL for the image that you want to add, then paste it to the right of the source tag.
  5. Type in style=, then type in width:px;height:px.
  6. Type in the image's width in pixels after "width:", then type in the image's height in pixels after "height:".
  7. This is the text that displays if the image fails to load. To do so, type in alt= and then type in the description.
  8. Place a > bracket after the last character in the alternate description to do so.
  9. It should resemble the following:
    • <img src=https://www.w3schools.com/w3css/img_fjords.jpg style=width:600px;height:400px alt=Fjord>
  10. Advertisement
Part 6
Part 6 of 7:

Saving the Document on Windows

Download Article
  1. It's in the top-left side of the Notepad window. A drop-down menu will appear.
  2. You'll find this near the top of the File drop-down menu.
  3. Click a folder on the left side of the window (e.g., Desktop).
  4. Type whatever name you want to use for the file followed by .html into the "File name" text field.
    • For a file named "meow", for example, you'd enter meow.html here.
  5. A drop-down menu will appear.
  6. It's in the drop-down menu.
  7. You'll see this in the bottom-right corner of the window. Doing so saves your text file as an HTML page.
    • You can open the HTML page file in most browsers by clicking and dragging the file onto an open browser window.
  8. Advertisement
Part 7
Part 7 of 7:

Saving the Document on Mac

Download Article
  1. It's in the upper-left side of the screen. A drop-down menu will appear.
  2. You'll find this near the top of the drop-down menu. The Preferences window will open.
  3. It's at the top of the page.
  4. This is below the "When Saving a File" heading.
  5. Click the red circle in the top-left corner of the window to do so.
  6. It's a menu item at the top of the screen.
  7. This option is in the drop-down menu.
  8. It's in the upper-left side of the screen.
  9. This is near the top of the drop-down menu.
  10. Replace the name in the "Save As" text field with whatever name you want followed by .html.
    • For example, for a document named "my_website", you'd enter my_website.html here.
  11. Your HTML document will be saved in your default save location (e.g., Desktop).
    • You can open the HTML page file in most browsers by clicking and dragging the file onto an open browser window.
  12. Advertisement

Community Q&A

Search
Add New Question
  • Question
    How can I write HTML Tags in HTML?
    Ronav Puri
    Ronav Puri
    Community Answer
    You can write HTML tags between angle brackets and in capital letters. If you want to write an ending HTML tag, put a forward slash between the angle brackets and write the tag after that.
  • Question
    are there two methods of writing HTML?
    Community Answer
    Community Answer
    There is only one method, unfortunately. You might be thinking about CSS, but that is a different language, and not HTML.
  • Question
    How can I use tag background color or text color?
    Community Answer
    Community Answer
    You can't do it with HTML. You need to use CSS, a language that you can find many tutorials for on this website.
See more answers
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
Advertisement

Tips

Submit a Tip
All tip submissions are carefully reviewed before being published
Thanks for submitting a tip for review!
Advertisement

Warnings

Advertisement

About This Article

Jack Lloyd
Written by:
wikiHow Technology Writer
This article was co-authored by wikiHow staff writer, Jack Lloyd. Jack Lloyd is a Technology Writer and Editor for wikiHow. He has over two years of experience writing and editing technology-related articles. He is technology enthusiast and an English teacher. This article has been viewed 314,065 times.
How helpful is this?
Co-authors: 65
Updated: February 19, 2022
Views: 314,065
Categories: HTML
Thanks to all authors for creating a page that has been read 314,065 times.

Reader Success Stories

  • Jasmine Bond

    Jasmine Bond

    Oct 15, 2016

    "This was awesome, and thanks for providing an example."
Share your story

Is this article up to date?

Advertisement