The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Making my own html page

3 posters

Go down

Solved Making my own html page

Post by MrMega July 24th 2009, 5:46 pm

I'm making an html page, but it's not turning out great, I need desperate assistance...

Questions:

1. What's HTML for inserting a background image?
2. How do you change the font? Like Arial, Verdana, etc.?
3. One more thing: How do you make a list and dots with html? (like this:)

Code:
[list]
[*]text here
[*]text here
[/list]


Last edited by Dralimarx on July 24th 2009, 7:22 pm; edited 1 time in total
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 5:51 pm

Code:
<body
style="background-image:url(http://i41.tinypic.com/28auvzp.png);background-attachment:fixed;"></body>
for the body background... edit the url(); with your background image link.

Code:
<span style="font-family: Segoe Print, Century Gothic, Arial, Helvetica, sans-serif; color: #ffffff; size: 2px;"><font color="blue" size="3"></span>
for the font... to add moree fonts, add the font titles after ="font-family: following with a comma.

Code:
<ul><li>
<li>
<li> </ul>
for the list... or you could just use • (ALT + 7)


Last edited by Rok on July 24th 2009, 5:53 pm; edited 1 time in total
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by MrMega July 24th 2009, 5:52 pm

Wow thanks Rok! XD
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 5:53 pm

I edited the post with more information. No problem, bud. Wink
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by MrMega July 24th 2009, 6:09 pm

Oh and by the way..how do you insert an image? I tried:

Making my own html page Link

and

<img>link</img>

doesn't work
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 6:12 pm

Code:
<img src="LINK TO IMAGE">

Anything else?

Also, to make an image link to somewhere:
Code:
<a href="LINK" target="_blank" title="TITLE OF PAGE"><img src="LINK TO IMAGE" border="0"></a>

The border="0" will remove the linked image's annoying border.


Last edited by Rok on July 24th 2009, 6:28 pm; edited 2 times in total
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by MrMega July 24th 2009, 6:13 pm

Umm...nothing so far. A big thanks, man! When I create the HTML page then I'll mark as solved.

EDIT: How do you align something to the right?


Last edited by Dralimarx on July 24th 2009, 6:23 pm; edited 1 time in total
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 6:14 pm

I edit out the previous post with some more information. Very Happy
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by MrMega July 24th 2009, 6:25 pm

Edited my previous post.
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 6:27 pm

Code:
<div align="right"> BLAH BLAH </div>

You can change the position ="right"> to 'left' or 'center'.
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by MrMega July 24th 2009, 6:33 pm

Done! Not trying to spam, but Rok, do you think I can spice it up a little somehow...?

Spoiler:

I know it's missing a banner (in request now) and a link to the main forum (I'll do it after the banner's done), but how do you like it now?
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 6:36 pm

I think you should try changing the font from Arial (or whatever it is) to Century Gothic or something more appealing.

I don't know if we are allowed to discuss ideas about users' sites, so I'm sorry if it's not allowed.
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by MrMega July 24th 2009, 6:37 pm

Then we'll move this into a PM discussion Wink Alright changing now....

Oh yeah, how do you just change the font? You gave me a font family code, and...
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 6:45 pm

You just add the title of the font as the first font in the line. You seperate them with commas.
For instance, if a user doesn't have the first font downloaded on their computer, then they can't see it, but they'll see the next font that's in line. So if you have something like the trashco font as first on the list, not many users will have it downloaded because it's a font you must download- it's not a font that's installed automatically and defaultly on your computer. So, if you have Century Gothic (which almost every single computer has downloaded) after trascho, Century Gothic will appear instead of trascho. So forth, so on. Wink
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by MrMega July 24th 2009, 6:47 pm

Ok, I switched but still the font is still the same. I know I have Century Gothic though...
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 6:50 pm

Have the code set up like this:
Code:
<span style="font-family: Century Gothic, Arial, Helvetica, sans-serif; color: #ffffff; size: 2px;"><font color="blue" size="3"></span>




AND PLACE EVERYTHING ELSE IN THE CENTER.....




</span>
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by MrMega July 24th 2009, 6:52 pm

Ok got it. Another thing:

In forum & category making, in a forum's title, how do you make it so when you click on the forum it leads you to another link?

I tried <url=link<text</url> but nothin
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 7:00 pm

Code:
<a href="LINK" target="_blank" title="TITLE OF PAGE TO LINK">text here</a>

You can remove the ' target="_blank"' part from the code if you don't want the page to pop up in a new window. Wink
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by MrMega July 24th 2009, 7:07 pm

Thanks...still waiting for my banner....
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 7:08 pm

Alright; if you need any non-support suggestions, you can just shoot me a PM. Wink
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by MrMega July 24th 2009, 7:15 pm

Ok now how do you make it so you click on text and it links you to somewhere?

Sorry about all these questions, I'm newbie at HTML but master at bbcode.
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 7:18 pm

Didn't I just state that?
Code:
<a href="LINK" target="_blank" title="TITLE OF PAGE TO LINK">text here</a>
Razz
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by MrMega July 24th 2009, 7:21 pm

Cool thanks a bunch! Almost finished, just need a banner and a little blue bar stating Design by Tanix. Marked as solved. Very Happy Thanks a bunch Rok! I'll repay you by doing my job at ForuMansion lol (I'm MrMega)
MrMega
MrMega
Forumember

Male Posts : 981
Reputation : 11
Language : English, Polish, HTML, BBCode
Location : New York, United States

Back to top Go down

Solved Re: Making my own html page

Post by Rok July 24th 2009, 7:25 pm

Lol, I know who you are and you don't owe me. Smile
No problen, bud. Wink
Rok
Rok
Energetic

Male Posts : 6823
Reputation : 234
Language : idk

Back to top Go down

Solved Re: Making my own html page

Post by Nessa July 26th 2009, 4:08 pm

As this problem appears to have been resolved, I will lock this topic now.


=> Locked
Nessa
Nessa
Energetic

Female Posts : 6203
Reputation : 128
Language : English

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum