01 May 14
I understand this Russ fellow is the creator of this one, so Russ, if you'd please fill me in on
how to start my own site, and how I can make everyone registered here switch to my site
(like tips on selling and stuff) that'd be much appreciated, thank you very much.
This site is awesome, is what I meant to say. The darndest things that comes out of your
fingers sometimes. 🙄
Originally posted by C Hessit is without doubt the best chess site ont tinternet squire.
I understand this Russ fellow is the creator of this one, so Russ, if you'd please fill me in on
how to start my own site, and how I can make everyone registered here switch to my site
(like tips on selling and stuff) that'd be much appreciated, thank you very much.
This site is awesome, is what I meant to say. The darndest things that comes out of your
fingers sometimes. 🙄
Originally posted by C Hesslearn Html5, CSS3 and JQuery and some little PHP and you're good to go!
I understand this Russ fellow is the creator of this one, so Russ, if you'd please fill me in on
how to start my own site, and how I can make everyone registered here switch to my site
(like tips on selling and stuff) that'd be much appreciated, thank you very much.
This site is awesome, is what I meant to say. The darndest things that comes out of your
fingers sometimes. 🙄
http://www.codecademy.com/
02 May 14
It's easy. First you make a HTML file in a text editor.
<html>
<head>
</head>
<body>
<!-- this is how I program the buttons, yo -->
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<!-- use big-ass letters, because RHP is awesome -->
<font size="24 pt">RHP is the best chess site EVER!</font>
<br>
<!-- use smaller letters to ask YOUR opinion, because that pales
in comparison to the awesomeness of RHP -->
<font size="14 pt">Do you agree?</font>
<br>
<button type="button" id="myYesButton">YES</button>
<button type="button" id="myNoButton">NO</button>
<br>
<div width="300px" height="40px" id="answer"></div>
<script>
$('button#myYesButton' ).click(function() {
$('div#answer' ).text('Damn straight it is!' );
});
$('button#myNoButton' ).click(function() {
$('div#answer' ).text('Wrong answer - EJECTED!' );
setTimeout(function() {
document.write('<font size="72 pt">X</font>' );
}, 2000);
});
</script>
</body>
</html>
Save it as stupid_page.html, then open it in your browser.
Boom. Now you can say you've written a website.
Originally posted by BigDoggProblemLOL! Something tells me Russ has put a little more effort into creating this site than that.
It's easy. First you make a HTML file in a text editor.
[quote]<html>
<head>
</head>
<body>
<!-- this is how I program the buttons, yo -->
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<!-- use big-ass letters, because RHP is awesome -->
<font size="24 pt">RHP is the best chess site EVER!</font>
<br>
<!-- use smaller ...[text shortened]... upid_page.html, then open it in your browser.
Boom. Now you can say you've written a website.