Q&A for How to Learn HTML

Return to Full Article

Search
Add New Question
  • Question
    How do I design a website?
    Philip okugbe
    Community Answer
    To design a website, you will need to sit, practice and learn HTML and CSS very well. If you want to create and design dynamic websites, then you will have to learn php as well.
  • Question
    How do I refresh the page?
    Top Answerer
    Hit the refresh button (usually an arrow going in a circle next to the forward and back buttons) or if you have a mobile site, scroll up to the top; at the top, swipe down to refresh.
  • Question
    After typing out a full program, how do I see the result or figure out how to run it?
    Philip okugbe
    Community Answer
    Make sure the file is an html extension (eg., home.html). Right click on the file and click on "open with", then select Mozilla Firefox or any browser you have to open the file.
  • Question
    How do I write "about us"?
    Community Answer
    If you mean a simple paragraph then it is just a paragraph tag which is done like this: about us That will print out a message on the webpage printing that line of text. Hope this helped.
  • Question
    How do I include images stored in my computer to my web page?
    Community Answer
    You'll have to first upload the images to your web host, then insert into your code.
  • Question
    I have written html, but the doctype where I wrote shows red. What could be wrong?
    Joshua Liu
    Community Answer
    You might have an error in the code. Put it at the very top of the page.
  • Question
    Do I need to leave spaces?
    Pingu
    Top Answerer
    No, unless they're in the name of a file you're linking to. HTML doesn't care about spaces and empty lines. You can, however, use them to make you source code more readable.
  • Question
    What is meant by coding? Does it mean I have to write numbers or special signs?
    Community Answer
    Coding is a skill where you take instructions (the steps in a task) and translate it into a language the computer understands since computers do not communicate like humans. They communicate in a language called binary and it is uses 0’s and 1’s. Coders write the instructions using a programming language. This programming language translates human code into computer code known as software.
  • Question
    Can I practice HTML on mobile devices, or does it have to be on PC, and if so, which browsers can I use?
    Community Answer
    Yes. Go to Google Play store and download the programming hub app. After launching the app, select the course you want to study and if you select HTML (the course contains notes, example programmes with an HTML compiler). You can run and test any HTML programs on that compiler. Then just open the file.
  • Question
    When I open the page in Chrome, it's completely blank. Anything I can do about this?
    Community Answer
    You might not have entered HTML that instructs the browser to display anything. If you did add elements to display something, try adding more and refreshing the page. That'll tell you if Chrome is reading the file properly.
  • Question
    Can I use it to write a game script?
    Community Answer
    Yes, you can create a simple and interactive HTML game, which can be used in conjunction with Javascript scripts and functions for interactivity.
Ask a Question

      Return to Full Article