Make a Webpage: Hello, I'm Learning How!

  • Thread starter Thread starter Kiley Dean
  • Start date Start date
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
8 replies · 3K views
Kiley Dean
Messages
13
Reaction score
0
Hello, I am learning how to make a simple web site. I find it interesting that whenever I click the page(index.html) on my desktop, it opens immediately for me. I wonder how to make my page 1/3 or half-open...the page stops loading when things on page are 1/3 or 1/2 loaded.

??
 
Physics news on Phys.org
Why on Earth would you want your page to be 1/3 loaded? I don't know of any way to do this, though you might be able to "simulate" it with some clever JavaScript.

- Warren
 
i am sorry I don't know how to use javascript.
I can only do

<html>
<head>
<title>Dean's page</title>
</head>
<body>
Welcome to my page
...write long paragraphs here..
</body>
</html>

I am just curious if that can be done, stop the page when it is 1/3 or =1/2 loaded
 
press the stop button on your browser
 
Well it is only to learn more about page-loading
 
Oh, I don't want to press it all the time
 
The only thing you need to know about page loading is that the browser starts at the top of the code and works it's way down. That's the order. But the code is only text so the time it takes for the browser to translate it is almost instantaneous. I can see why you want to learn about the loading order because it seems you're starting off with HTML. Stick with it, man. It's a really good skill to have; I'm serious. You'll learn how to become more advanced so you can create awesome pages. After or even while you master HTML, you can learn some PHP or JavaScript to incorporate new features into your work.