Hey Guys, I'm back to developing my website, and here is the starting scripts of it! Would you mind having a look at it, and improving asthetics and scripts?
<html> <head> <title>Home</title> </head> <body> <form> <input type=button value="Home" onClick="self.location='index.html'"> <input type=button value="websites" onClick="self.location='webpages.html'"> <input type=button value="Images & Videos" onClick="self.location='imagesandvideos.html'"> <input type=button value="Software & Technology" onClick="self.location='software&tech.html'"> <input type=button value="Contact Us" onClick="self.location='contactus.html'"> </form> </body> </html> © 2011 Cyberkidscountry.com | Some Rights Reserved
Offline
ssss wrote:
No, you won't have a look at it, or No, you don't mind?
I know little HTML, and I don't think you should do SOME RIGHTS do ALL RIGHTS. Also, for a easy website, create it in Word (MS Word.)
Offline
thebuilderdd wrote:
ssss wrote:
No, you won't have a look at it, or No, you don't mind?
I know little HTML, and I don't think you should do SOME RIGHTS do ALL RIGHTS. Also, for a easy website, create it in Word (MS Word.)
I am not allowed to, i have to make my website using Actual Html code and JavaScript - i need to learn, not for easy scripting
And it's Some Rights as the sight will be using Scratch as a game media, and i want it to be Open Source
Offline
thebuilderdd wrote:
ssss wrote:
No, you won't have a look at it, or No, you don't mind?
I know little HTML, and I don't think you should do SOME RIGHTS do ALL RIGHTS. Also, for a easy website, create it in Word (MS Word.)
Ugh, don't use Word. It takes the simplest website and spits out the most unnecessary complex HTML I've ever seen. I can understand why You would need more complex tags for more complex websites, but Word does an awful job of making minimalist HTML.
Offline
Now why would you do that? Just use
../../
href=
Keep to as much HTML as possible. Many people have JS or parts of JS blocked.
My site Offline
what-the wrote:
Now why would you do that? Just use
../../
href=
Keep to as much HTML as possible. Many people have JS or parts of JS blocked.
i have never met anyone with it blocked ...
Offline
ssss wrote:
what-the wrote:
Now why would you do that? Just use
../../
href=
Keep to as much HTML as possible. Many people have JS or parts of JS blocked.i have never met anyone with it blocked ...
I turn it off on my iPod because the JS performance on mobile browsers is pretty bad.
Offline
New Code
HTML & JavaScript:
<html>
<head>
<link rel="stylesheet" href="layout.css" ... />
<link rel="jquery" href="http://code.jquery.com/jquery-1.5.1.js" ... />
</head>
<body>
<div class="wrapper">
<center> <form>
<input type=button
value="Home"
onClick="self.location='index.html'">
<input type=button
value="websites"
onClick="self.location='webpages.html'">
<input type=button
value="Images & Videos"
onClick="self.location='imagesandvideos.html'">
<input type=button
value="Software & Technology"
onClick="self.location='software&tech.html'">
<input type=button
value="Contact Us"
onClick="self.location='contactus.html'">
</form><br>
<p>Hi, welcome to cyberkidscountry! We are currently under-going major changes to<br>
the site, namely being using JavaScript codes a lot more ;) We encourage you to<br>
enable Javascript, However, if you do not we ask you to go to<br>
<a href="/nsj">www.cyberkidscountry.com/njs/</a>. That is this site, reprogrammed<br>
to not use javascript in case you do not want it enabled (e.g. On an Ipod). We<br>
Thank you for visiting, and we hope you come again!</p> </center>
<div class="push"></div>
</div>
<center><div class="footer">
<p>©2011 Cyberkidscountry.com | Most Rights Reserved</p>
</div> </center>
</body>
</html>CSS design sheet:
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -4em;
margin-left: auto;
margin-right: auto;
width: 60em
}
.footer, .push {
height: 4em;
}Last edited by ssss (2011-02-26 20:18:18)
Offline