Q&A for How to Create a Simple Webpage Using Notepad

Return to Full Article

Search
Add New Question
  • Question
    Do I have to use notepad to create web pages?
    Community Answer
    No. There are many other apps that can edit HTML documents. There are even some made for the purpose of creating HTML.
  • Question
    What is the age limit for hosting a website?
    Community Answer
    There isn't an age limit for hosting a website. As long as you know how to create one, it will be fine.
  • Question
    What do you mean when you say "open the .html file..."?
    Community Answer
    Open the HTML file=open the file with the extension .html in Notepad for the code or in a browser for the output.
  • Question
    How do I open the Notepad program?
    Community Answer
    Press the Windows key + "R," type in, "notepad.exe," and notepad should appear.
  • Question
    How can I run a program in notepad?
    Community Answer
    Save the program as (whatever you want).html. Save it to the desktop, then find the document and double click on it. It should open up in whatever browser you use.
  • Question
    How can I save the file as an HTML?
    Community Answer
    When you click on "Save As," change the type to "All Types." Now enter the name of the file followed by ".html." For example, "Website.html."
  • Question
    How can I save the file, then open the website after?
    Community Answer
    Hit "Save as," then after saving, run the html document through the webpage of your choice.
  • Question
    How do I download the HTML code for a website?
    Community Answer
    Right click on the page, then click ''View Page Source". You can then copy the HTML and paste it to Notepad.
  • Question
    How do I save the files on my computer?
    Community Answer
    You select File, and then Save As. Choose the location where you want to save the file and hit Save.
  • Question
    Once my data has been saved in the Notepad file, how do I then display my webpage in a browser?
    Community Answer
    Right click on the File and select Open With. Then choose your browser. (For example, Internet Explorer.) It will open in the selected browser.
  • Question
    How do I paste an image onto a webpage?
    Community Answer
    You can right-click on an image and click "Copy," then right-click to "Paste" it on the webpage.
  • Question
    How do I post my website on the web?
    Community Answer
    You need to acquire a domain for that. There are many options to do so; some are free, most are paid. The price depends on the size of your website and other services you may get.
  • Question
    How do I check if my coding is correct?
    Marko Jovanovic
    Community Answer
    Run it and see if it is working. In Notepad, you have the option to Run/Launch in Chrome or Opera. If you are using visual code then it is ctrl+shift+b.
  • Question
    It is possible to do a forum with only notepad?
    Community Answer
    Not unless you have coding skills. It also must be hosted on a domain so you can host the javascripts needed to run a forum. You may want to try a forum creator websites if you need a forum.
  • Question
    How can I save HTML code offline in notepad?
    Community Answer
    When you want to edit the code for your website, all you have to do is use the computer that has the website's .html file, find the file, then right click and select open with notepad. Then, edit code however you wish.
  • Question
    When I finish writing and open it on my web browser, it shows the very thing I wrote on Notepad, how do I fix it?
    Leah Talley Nodes
    Community Answer
    Make sure you are not loading a file from your computer, check the address in the URL bar, and/or try refreshing the page. If this doesn't help, try resetting your history/cookies.
  • Question
    How can I remove one of the HTML pages that I created in notepad from my website after I have published it?
    Community Answer
    You can remove an HTML page by deleting the HTML in the notepad of the HTML page you do not want.
  • Question
    How do I know if my website works?
    Community Answer
    Copy the link of the website, then paste it. If it comes up, then it is working. If it doesn't come up, then it is not working.
  • Question
    After I save the webpage, I right click and select "open with" but there's no website option given, only Wordpad or Notepad. What can I do to fix this?
    Community Answer
    If you don't have any of those browsers downloaded on your computer, you may have to install one and then open it. A shorter way would be to drag the file up to your search engine browser.
  • Question
    How do I add a picture to my simple webpage I made using Notepad?
    Community Answer
    Type in: 1) Replace the "example.jpg" with the name of the picture file with it's extension; 2) Insert the width and the height of the picture.
  • Question
    Why does the page show the codes too, not only the text on Notepad?
    Community Answer
    You may have not formatted it correctly. Try copying the text on this page and see if it works.
  • Question
    How do I add color to a website created using notepad?
    Community Answer
    Use Hexidecimal color codes (#FF00FF). Also, put (color:) or (background-color:) to get it to work.
  • Question
    Can other people see the website without having to open the file?
    Community Answer
    It's not really a website, it's just a document created using the HTML coding language, readable in a browser. Unless you upload the document to a web server and direct people to it (or send them the document), nobody but those on your local computer will be able to view it.
  • Question
    How do I get back to notepad when I open the file again?
    Community Answer
    Right-click your HTML document. A drop-down menu will appear. Select Open with. It's in the drop-down menu. Doing so opens a pop-out menu.Then Select notepad.
  • Question
    How do I create a second tab in Notepad++?
    Community Answer
    If you are using Notepad ++, all you have to do is this: There will be a paper with a green plus icon at the top. That is a new tab icon. If you press this, it will allow you to use another tab that is connected with your first. That is if you have a tab opened. If not, then it will make a new one for you.
  • Question
    How do I add a video in an HTML web page in Notepad from my hard drive?
    Anwesha Goel
    Community Answer
    Copy the following link in your coding where you want the video to be shown: SRC refers to the source of the video. In double inverted commas put the name of the video file along with extension like mp.4 if in the same folder as your code otherwise go to the video properties and copy the location and paste inside. You can adjust the height and width also. There are any other controls.
  • Question
    Do I need an internet connection if I'm a beginner using HTML?
    Anwesha Goel
    Community Answer
    No, you can view and edit your code without an internet connection because the web browser isn't searching for a page online, the page is already saved locally in your device.
  • Question
    What do commands for HTML code look like in Notepad instead of Notepad ++?
    Community Answer
    They are the same thing. Although the Notepad++ UI looks more modern, either Notepad would work with creating a standard HTML website.
  • Question
    How do I make it look more like an appealing website and less like a Google doc?
    Wolfie_Snowflake
    Community Answer
    A css. To link it put it in the same file, and type the following code to do so with notepad do the same thing but replace .html with .css Here is a example of mine to get you started: body { background-color: black; } p{ color: white; } h1{ color: white; } h2{ color: white; } h3{ color: white; } h4{ color: white; } h5{ color: white; } h6{ color: white; } href{ text-decoration= none; }
  • Question
    How can I decorate my website?
    Wolfie_Snowflake
    Community Answer
    Do this with a CSS code. Put it in the same folder as you saved the HTML, same trick that was explained above, except don't put .html, instead put .css. To link it then put: To give you an idea here is my site stylesheet. It is fine if you copy as it is I think pretty common. body { background-color: black; } p{ color: white; } h1{ color: white; } h2{ color: white; } h3{ color: white; } h4{ color: white; } h5{ color: white; } h6{ color: white; }
Ask a Question

      Return to Full Article