Author Topic: HTML Help?  (Read 1505 times)

Hia guys, I need some help with HTML, ive been starting to experiment with it so when I get my domian I wont have to use blogspot or wordpress.

My question is why won't "The place where ponies can fly" appear under Valid's Website.
Take a lookie!

<html>
<head><title>Messin With HTML</title></head>
<center>
<font size=30>Valid's Website
</font>


<font size=5>The place where ponies can fly.</font>






<center>





</htm>

You forgot to add a line/paragraph break after Valid's Website.

You forgot to add a line/paragraph break after Valid's Website.

How?

Double post, I fixed it by doing this.

Here is how it should look.

<html>
<head><title>Messin With HTML</title></head>
<center>
<font size=7>Valid's Website
<br>
</font>


<font size=5>The place where ponies can fly.</font>






<center>





</html>
The font sizes only go up to 7 so I changed that though it doesn't make a difference.


It adds line break. You can have a bigger space between the text by adding a paragraph break with <p>.

It adds line break. You can have a bigger space between the text by adding a paragraph break with <p>.

Thanks! How do I add images?

With <img src="(file location and file)">.

You're missing a <body> tag

put the <body> tag after <head>

So like <img src "C:\Users\Owner\Pictures\hillking.png"> ?

So like <img src "C:\Users\Owner\Pictures\hillking.png"> ?

No don't do that because it won't show up when you put it on the internet, put all your website inside a folder so it would be

<img src="hillking.png">

So like <img src "C:\Users\Owner\Pictures\hillking.png"> ?
That didnt work.

So like <img src "C:\Users\Owner\Pictures\hillking.png"> ?
lol'd, HTML was the first major thing about computers I learned how to do, I learned it when I was 7 or 8.

That didnt work.

No don't do that because it won't show up when you put it on the internet, put all your website inside a folder so it would be

<img src="hillking.png">