Free Games Forum
Free Games Games Forums Music Forums TV Forums

  Free Games Forum Home FORUM
HOME
Search Posts SEARCH
POSTS
Who's Online WHO'S
ONLINE
Log in LOG
IN
Rules & FAQ RULES / FAQ
REPORT SPAM

Free Games Forum: Game Technology: HTML Forum:
Rate my learning

 

 


lea0001
Member


Dec 1, 2005, 11:22 AM

Post #1 of 11 (1009 views)
Shortcut
Rate my learning Can't Post

Ok yesterday i didnt know a thing about tml and did this in about 15 minutes from some guide offf the net rate my learning outve 10.

I just tested a few basic tags and wrote it all by hand (well i didnt copy and paste any)


This is my test script lol if u want to view in html format copy and ave in notpad file as .htm


---------------
<html>
<title>
MY FIRST HTRML EVA (that actually works)
</title>
<body bgcolor="green">
<body>
<h1>DUs it work plz plz plz?!</h1>
<p> this is my uber paragraff!<br> omg space?</p>
<hr>
BOO?
<b><big>BIG AND BOLD</big></b>
<br>
A very famous man once said...
<br>
<q><big>BOBO!!</big></q>
<p><big><b>MELLOW.</b></big><br>
The time has come for U to die and V to enter!!!<br>
I thought one boring day <br>
<address> this is an address...herm yeah</address>
</p>
<P> PARA 2 lalalalalala spamidy im tewh no not the but teh l33t3st1!!<br>
LALALALALALAL<br>
LALALAAL,<br>
WDF fgggggggggggggggggggg<br>
BO &copy;</p>
<p>HELLO? &nbsp; has it workd if so &nbsp; we l so0n f1nd 0ut</p>
<p> ok gonna test this out now, plz come to <a href="http://www.abysel.com/"
target="_blank">abysel</a> does it work click on IT</p>
<p>i am c0ol</p>
</body>
</html>


----------------------------------------------------------
Well done you have figured how to view the secret white text BY highlighting it,

Join www.abysel.com the better version o

(This post was edited by lea0001 on Dec 1, 2005, 11:23 AM)



SkillzDatKillz
Senior Member


Dec 2, 2005, 3:02 PM

Post #2 of 11 (1004 views)
Shortcut
Re: [lea0001] Rate my learning [In reply to] Can't Post

Dude, anyone can do that, thats simple basic HTML, thats like adding and subtracting.


I_M_Dead1234
Senior Member


Dec 2, 2005, 5:22 PM

Post #3 of 11 (1003 views)
Shortcut
Re: [lea0001] Rate my learning [In reply to] Can't Post

Wow, i'm reading some fat book on it...Called "HTML 4.01"

Well, you have a pretty nice start on HTML



RuneScape:Neon Zidane1(my friend's)
Cleowin Resources-My schoolmate's new forum
My forum- 200+Members-Recuriting Mods,Join and PM me


I_M_Dead1234
Senior Member


Dec 11, 2005, 5:11 PM

Post #4 of 11 (992 views)
Shortcut
Re: [lea0001] Rate my learning [In reply to] Can't Post

You have to do like this...sorry or 2x post:


Code
 <html><head><title> pagetitle </title></head><body>content here</body></HTML>




RuneScape:Neon Zidane1(my friend's)
Cleowin Resources-My schoolmate's new forum
My forum- 200+Members-Recuriting Mods,Join and PM me


Bigcc32
Enthusiast


Jan 16, 2006, 1:05 PM

Post #5 of 11 (974 views)
Shortcut
Re: [I_M_Dead1234] Rate my learning [In reply to] Can't Post

Good start.... Basically how i started like a month ago lol... I find it easy to remember, like basic and winbatch.


_
Why does everyone tend to read what's UNDER my post? HEY, you did it too!

z0mg y0u r0xx0rz m1 b0xx0rz!


gre dork
Senior Member


Feb 14, 2006, 3:58 AM

Post #6 of 11 (959 views)
Shortcut
Re: [SkillzDatKillz] Rate my learning [In reply to] Can't Post


In Reply To
Dude, anyone can do that, thats simple basic HTML, thats like adding and subtracting.



wot about that:

p.s.:yeah, it's got a lil bit of java, but its very lil thing

<script language="JavaScript" src="http://www2.xpg.com.br/sites/HEADER.js"></script>
<noframe><noscript>
<div style="text-align:center;background-image:url(http://www2.xpg.com.br/images/xpg2/padrao/internas/barra_fundo.gif)">
<img src="http://www2.xpg.com.br/images/xpg2/padrao/internas/barra_nojava.gif" border="0" usemap="#Map" >
<map name="Map">
<area shape="rect" coords="84,-1,221,30" href="#">
<area shape="rect" coords="277,0,405,29" href="#">
</map>
</div>
</noscript></noframe>
<html>
<head><title>the dark clown clan</title></head>
<body link="blue" alink="blue" vlink="blue" font color="red"
onload="if (window.isIE4) window.tm=setTimeout('flicker()',1000)"
onunload="clearTimeout(window.tm)">
<font FACE="verdana,arial,helvetica" SIZE="2">

<script language="JavaScript"><!--
function verfonte()
{
if (event.button==2)
{
window.alert('Direitos negados.\n\nClique em Ok, para continuar.')
}
}
document.onmousedown=verfonte
// --></script>
<h1 id="MainH1" style="font-family: verdana" align="center"></font><font size="8"
face="Arial">The dark clown clan.<br>
</font><font FACE="verdana,arial,helvetica" SIZE="2"></h1>

<p align="center"><script>
var initialColor;
initialColor = 0;
initialR = 254;
initialG = 2;
initialB = 128;
rIncrement = -1;
gIncrement = 1;
bIncrement = -1;

function tick() {
var hexR, hexG, hexB;

hexR = intToHex(initialR);
//alert(hexR);
hexG = intToHex(initialG);
//alert(hexG);
hexB = intToHex(initialB);
//alert(hexB);

initialR += rIncrement;
initialG += gIncrement;
initialB += bIncrement;

if (initialR < 0) {
initialR = 255;
rIncrement *= -1;
} else if (initialR > 255) {
initialR = 0;
}

if (initialG < 0) {
initialG = 255;
gIncrement *= -1;
} else if (initialG > 255) {
initialG = 0;
}

if (initialB < 0) {
initialB = 255;
bIncrement *= -1;
} else if (initialB > 255) {
initialB = 0;
}

hexColor = "#"+hexR+hexG+hexB;
MainH1.style.color = hexColor;

window.setTimeout("tick();", 10);
}

function intToHex(anInt) {
var theString;
var aDigit, aHexDigit;
var i;

theString = "";

for (i = 1; i >= 0; i--) {
p = power(16, i);
aDigit = anInt / p;
aDigit = round(aDigit);
anInt = anInt - (aDigit * p);
aHexDigit = digitToHex(aDigit);
theString = theString + aHexDigit;
}

return theString;
}



function power(aNumber, aBase) {

var rval;

if (aBase == 0)
return 1;

rval = aNumber;

for (i=1;i<aBase;i++) {
rval = rval * aNumber;
}

return rval;
}

function round(aNumber) {
for (i = 16; i >= 0; i--) {
if (aNumber >= i)
return i;
}
return 0;
}

function digitToHex(aDigit) {
if (aDigit < 10)
return aDigit;
else if (aDigit == 10)
return "A";
else if (aDigit == 11)
return "B";
else if (aDigit == 12)
return "C";
else if (aDigit == 13)
return "D";
else if (aDigit == 14)
return "E";
else if (aDigit == 15)
return "F";
}

window.onload=tick;

</script> </p>


<SCRIPT LANGUAGE="JavaScript">


</SCRIPT>
<script language=javascript>
/*---------------[IE 5.5 Scrollbars colorer]--------------------*/
function scrollBar(line,face,theme)
{
if (!line||!face)
{
line=null;
face=null;
switch(theme) // Predefined themes
{
case "blue":
var line="#000000";
var face="#EBF5FF";
break;
case "orange":
var line="#78AAFF";
var face="#EBF5FF";
break;
case "red":
var line="#FF7979";
var face="#FFE3DD";
break;
case "green":
var line="#00C600";
var face="#D1EED0";
break;
case "neo":
var line="#000000";
var face="#DEDFE2";
break;
}
}

with(document.body.style)
{
scrollbarDarkShadowColor=line;
scrollbar3dLightColor=line;
scrollbarArrowColor="black";
scrollbarBaseColor=face;
scrollbarFaceColor=face;
scrollbarHighlightColor=face;
scrollbarShadowColor=face;
scrollbarTrackColor="#999999";
}
}

/*------------------[Pointer coordinates catcher]---------------*/
function colorBar(){
var w = document.body.clientWidth;
var h = document.body.clientHeight;
var x = event.clientX;
var y = event.clientY;
if(x>w) scrollBar('#000000','#B4B3B3'); // Your colors
else scrollBar(null,null,"neo"); // A predefined theme
}

if (document.all){
scrollBar(null,null,"neo");
document.onmousemove=colorBar;
}
//-->
</script>

<p>&nbsp;</p>
<p>&nbsp;</p>



<marquee behavior=scroll width=100%><font color="white"><b>welcome to the dark clown clan<b></marquee>
<br>
<br>
<center><img src="robotic-mick.jpg"></center>
</font>
<head><title><p><b>the dark clown clan</b></p></title></head>
<body bgcolor="lightgreen"><font color="black">
<br>
<marquee behavior=scroll width=100%><font color="white"><b>welcome to the dark clown clan<b></marquee>
<br>
<br>
<font color="white">
<b><font size=3>Welcome to the dark clown clan, the best clan ever made. Please, read this 'cause is rally important.</font></b>
<b><font size=3>We want to make one of the strongest clan in rune scape. For that, we only accept players level</font></b>
<b><font size=3>80 or above. Mages level 60+ magic and rangers level 60+ ranged. Note that mages and rangers don't</font></b>
<b><font size=3>NEED to be lvl 80+ combat. The dark clown clan staff will usually promove good drop partys</b></font>
<b><font size=3>if we see the clan is organized and if the clan is wining the wars. Note that the web site is still
under construction.</font></b>
</font>
<br>
<br>
<br>
<center><b><a href="sign.html">sign up!</b></a>
<br>
<center><b><a href="error.html">forums</b></a>
<br>
<center><b><a href="log.html">log in</b></a>
</table>
</head>
</html>


"Visa is just a credit card company, retard. "

- TazG, on visas.


Koaladude
Senior Member


Feb 21, 2006, 8:29 AM

Post #7 of 11 (935 views)
Shortcut
Re: [lea0001] Rate my learning [In reply to] Can't Post

Well done, Thats pretty good for 15 mins.


Snuzz.Net




Señor Sponge
Enthusiast


Mar 2, 2006, 6:48 AM

Post #8 of 11 (916 views)
Shortcut
Re: [Koaladude] Rate my learning [In reply to] Can't Post

How do I view these?


-Señor
HáW HàW™

"booty booty booty"
--Pheylan.


el nish
Senior Member


Apr 14, 2006, 3:51 AM

Post #9 of 11 (852 views)
Shortcut
Re: [Señor Sponge] Rate my learning [In reply to] Can't Post


In Reply To
How do I view these?


Copy it and save it in Notepad (make sure you save it as <name here>.htm and then click "All Files"). Then open a new window and click Open and find it.


New Forum AccountNish


Runemaster593
Enthusiast

Apr 21, 2006, 7:29 AM

Post #10 of 11 (807 views)
Shortcut
Re: [lea0001] Rate my learning [In reply to] Can't Post

yeah that works but if you want to create a modern 21st centure website i suject learning xml (xhtml), javascript,css and asp


Cold Reaper0
Senior Member


Apr 21, 2006, 6:09 PM

Post #11 of 11 (802 views)
Shortcut
Re: [Runemaster593] Rate my learning [In reply to] Can't Post


In Reply To
yeah that works but if you want to create a modern 21st centure website i suject learning xml (xhtml), javascript,css and asp



PHP > ASP

 
 
 


Search for (options) Web Design by Web Ideas - Page loaded in: 0.16 s on (CGI/1.1)