Q&A for How to Create a Simple Web Page with HTML

Return to Full Article

Search
Add New Question
  • Question
    How do I upload my webpage and make it public?
    Community Answer
    You can set up your own server, but I recommend buying web hosting from some of the available hosting companies. There are also free hosts out there, but they would put their ads on your webpage.
  • Question
    Can I create a web page using Notepad?
    Community Answer
    Yes. Write the code and then press edit-save and then call it what ever you want. After you called it something, you have to type .html at he end. Save and use as needed.
  • Question
    Can I create an interactive design of a website using only HTML?
    Community Answer
    Yes, you can put some pictures on there and a background as well.
  • Question
    How exactly do I get the HTML information on a tab?
    Community Answer
    After you change the file type to .html and open it, It should automatically turn into a tab.
  • Question
    Can I test the effects of a web page without the internet?
    Community Answer
    Yes, you can edit as well as see your doc on the browser without any network.
  • Question
    Is there an app available to guide me in creating a web page?
    Community Answer
    There's the mobile app "Learn HTML," as well as "Learn CSS" and "Learn JavaScript," all from Sololearn. Combine them all to create a nice HTML webpage. If you aren't looking for mobile apps but for websites, you can go to codecademy.com, or just search in Google for websites that will teach you programming languages.
  • Question
    How do I change the font size?
    Community Answer
    Use CSS. CSS is used to determine how an HTML document looks. To insert CSS into an HTML document, type ". ". To change the font size in CSS, type the tag you want to edit (p, h1, body etc) followed by a {. After the {, type: font-size: ...px; (the semicolon is very important!) then add a } at the end.
  • Question
    How do I pick an image from my computer instead of online?
    Community Answer
    Provide the exact path. For example, if your image is called face.jpg, type "C:\\Users\(your username)\Desktop\face.jpg."
  • Question
    How can I save a file on Notepad that will give me a webpage view?
    Community Answer
    You can save it by pressing cntrl+s. After you've name the file, save it as .html.
  • Question
    How do I link one HTML page with another HTML page?
    Community Answer
    You can create a link from one page to another using the "" tag. This tag has an important parameter "href", which contains the address.
  • Question
    Can I see the webpage on internet explorer?
    Community Answer
    Yes, but internet explorer cannot process some tags.
  • Question
    How do I get the photo? It's not coming even though the commands are correct. What can I do?
    Community Answer
    If you are 100% sure you have a working code, it all depends on the format of the picture and the browser you're opening it through. Some browsers cannot open file types.Try searching the internet to find out which web browsers handle which types of files.
  • Question
    How do I make my webpage public?
    Community Answer
    You either need a domain to upload the code to, or use an html coding site such as neocities.org and upload your code and pictures there.
  • Question
    Do I have to be on an iPad to make a HTML web page?
    Joshua Liu
    Community Answer
    No, you don't need to use an iPad; I normally use a PC. However, you can use an iPad to do it.
  • Question
    Is it possible to upload this for others to access without having the file and for free?
    Community Answer
    Yes. Simply put the file on a site like Google Drive or Dropbox.
  • Question
    Will my created website be searched by everyone in the world?
    Community Answer
    If it's publicly available, then yes, people will be able to find your website via searching. However, not everyone will find or read your site.
  • Question
    How can I verify that my webpage is working?
    Community Answer
    All you have to do is right-click on the file and open it with your browser.
  • Question
    How do I get it on the internet?
    Community Answer
    You will have to either host it yourself at home or purchase a web hosting plan. Simple ones are available for less than $5/month.
  • Question
    How do I save code from Notepad?
    Community Answer
    Click on File (one of the top 5 options) and then click Save as. You should save it to the desktop. Name it anything you want, with an .html ending.
  • Question
    How can I create a logo for my HTML website?
    Community Answer
    By using an editing program such as paint or photoshop.
  • Question
    How do I change the background color in HTML?
    Community Answer
    You can use the 'style' attribute or you can add a folder called 'css' and add a file called 'stylesheet.css.'
  • Question
    How do I remember the uses for the different HTML tags?
    Community Answer
    It's best to keep a cheat sheet on hand if you haven't completely learned all the meanings.
  • Question
    Can I link this HTML to another?
    Community Answer
    Yes, you can. You just tag the HTML with a link to the other.
  • Question
    Can I use font tags and color tags instead of CSS?
    Community Answer
    No, in HTML5 there are no font tags or color tags. In order to add font tags and color tags you must use CSS.
  • Question
    How do I get a domain name to put my HTML page on the internet?
    Community Answer
    You'll need a hosting service (smaller ones are less than $5/month), which typically includes domain name registration.
  • Question
    How to change the save type to HTML?
    Community Answer
    If you are on Windows, go to the start menu and type 'Folder Options.' Click on the first result, go to 'view,' and uncheck the box that says 'hide file extensions.' Then, go to your .txt (or other) file, and delete the original file extension and add .html
  • Question
    Is it okay to make HTML in notepad instead of notepad+?
    Community Answer
    It should be. Just rename it and add .html on the end. If it becomes corrupted then just use notepad+.
  • Question
    How do I set background color?
    Community Answer
    When you open body, add this: bgcolor="_____" then fill in the color and you'll get it.
  • Question
    How can I create a calculator?
    Community Answer
    I believe you'll need another application for that, like Visual Basic 6.
  • Question
    Can I edit an HTML page after it has been saved?
    Community Answer
    Yes, just reopen it in the program you used to create it, and re-save after your changes have been made.
Ask a Question

      Return to Full Article