Introvert or Extrovert Quiz
Q&A for How to Create a Simple Web Page with HTML
Coming soon
Search
-
QuestionHow do I upload my webpage and make it public?Community AnswerYou 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.
-
QuestionCan I create a web page using Notepad?Community AnswerYes. 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.
-
QuestionCan I create an interactive design of a website using only HTML?Community AnswerYes, you can put some pictures on there and a background as well.
-
QuestionHow exactly do I get the HTML information on a tab?Community AnswerAfter you change the file type to .html and open it, It should automatically turn into a tab.
-
QuestionCan I test the effects of a web page without the internet?Community AnswerYes, you can edit as well as see your doc on the browser without any network.
-
QuestionIs there an app available to guide me in creating a web page?Community AnswerThere'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.
-
QuestionHow do I change the font size?Community AnswerUse 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.
-
QuestionHow do I pick an image from my computer instead of online?Community AnswerProvide the exact path. For example, if your image is called face.jpg, type "C:\\Users\(your username)\Desktop\face.jpg."
-
QuestionHow can I save a file on Notepad that will give me a webpage view?Community AnswerYou can save it by pressing cntrl+s. After you've name the file, save it as .html.
-
QuestionHow do I link one HTML page with another HTML page?Community AnswerYou can create a link from one page to another using the "" tag. This tag has an important parameter "href", which contains the address.
-
QuestionCan I see the webpage on internet explorer?Community AnswerYes, but internet explorer cannot process some tags.
-
QuestionHow do I get the photo? It's not coming even though the commands are correct. What can I do?Community AnswerIf 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.
-
QuestionHow do I make my webpage public?Community AnswerYou 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.
-
QuestionDo I have to be on an iPad to make a HTML web page?Joshua LiuCommunity AnswerNo, you don't need to use an iPad; I normally use a PC. However, you can use an iPad to do it.
-
QuestionIs it possible to upload this for others to access without having the file and for free?Community AnswerYes. Simply put the file on a site like Google Drive or Dropbox.
-
QuestionWill my created website be searched by everyone in the world?Community AnswerIf 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.
-
QuestionHow can I verify that my webpage is working?Community AnswerAll you have to do is right-click on the file and open it with your browser.
-
QuestionHow do I get it on the internet?Community AnswerYou will have to either host it yourself at home or purchase a web hosting plan. Simple ones are available for less than $5/month.
-
QuestionHow do I save code from Notepad?Community AnswerClick 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.
-
QuestionHow can I create a logo for my HTML website?Community AnswerBy using an editing program such as paint or photoshop.
-
QuestionHow do I change the background color in HTML?Community AnswerYou can use the 'style' attribute or you can add a folder called 'css' and add a file called 'stylesheet.css.'
-
QuestionHow do I remember the uses for the different HTML tags?Community AnswerIt's best to keep a cheat sheet on hand if you haven't completely learned all the meanings.
-
QuestionCan I link this HTML to another?Community AnswerYes, you can. You just tag the HTML with a link to the other.
-
QuestionCan I use font tags and color tags instead of CSS?Community AnswerNo, in HTML5 there are no font tags or color tags. In order to add font tags and color tags you must use CSS.
-
QuestionHow do I get a domain name to put my HTML page on the internet?Community AnswerYou'll need a hosting service (smaller ones are less than $5/month), which typically includes domain name registration.
-
QuestionHow to change the save type to HTML?Community AnswerIf 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
-
QuestionIs it okay to make HTML in notepad instead of notepad+?Community AnswerIt should be. Just rename it and add .html on the end. If it becomes corrupted then just use notepad+.
-
QuestionHow do I set background color?Community AnswerWhen you open body, add this: bgcolor="_____" then fill in the color and you'll get it.
-
QuestionHow can I create a calculator?Community AnswerI believe you'll need another application for that, like Visual Basic 6.
-
QuestionCan I edit an HTML page after it has been saved?Community AnswerYes, just reopen it in the program you used to create it, and re-save after your changes have been made.
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit