| View previous topic :: View next topic |
| Author |
Message |
JamesWatts Addict


Joined: 21 Feb 2003 Posts: 685 City: Santa Monica
|
Posted: Oct 01, 2004 5:04 pm Post subject: HTML HELP ME |
|
|
ok i am the suck at this, i need..
The code to make a link to an email adress. so when you click on it it opens your email.
and then a code for like every time the page loads its puts a different quote. so i could like type in a bunch of differnet quotes, and then it would load a random one everytime the page loaded
The code to make text scroll.
the code to make it show the current time and date, and i need help with doing that, like php or something, yah i totaly dont know what im doing.
I have been just learning as i go along
here is the site so far.. IXMAR.com
Thanks for any help |
|
| Back to top |
|
 |
|
|
garveyj Addict


Joined: 12 Jan 2003 Posts: 877 City: Savage, MN
|
Posted: Oct 01, 2004 5:19 pm Post subject: |
|
|
The email one is easy - i am not sure about the rest, but the email one is:
<a href="mailto:youaddresshere">Type what you want the link to look like</a>
Here is an example:
<a href="mailto:jtg@myplace.com">Click here to email me</a> _________________ If you do not like your job, you don't strike....You just go in there everyday and do it really half a$$ed.....Now that's the American way - Homer Simpson. |
|
| Back to top |
|
 |
scooter Addict

Joined: 15 Jul 2003 Posts: 633
|
Posted: Oct 01, 2004 6:35 pm Post subject: |
|
|
now do you use notepad or word pad or wat ever to make real websites like wakeboarder.com?
________
Vaporizer wholesale
Last edited by scooter on Mar 04, 2011 3:29 pm; edited 1 time in total |
|
| Back to top |
|
 |
garveyj Addict


Joined: 12 Jan 2003 Posts: 877 City: Savage, MN
|
Posted: Oct 02, 2004 5:36 am Post subject: |
|
|
Actually you use programs like Dreamweaver by Macromedia - that program is awesome!!! _________________ If you do not like your job, you don't strike....You just go in there everyday and do it really half a$$ed.....Now that's the American way - Homer Simpson. |
|
| Back to top |
|
 |
FASTnSPEEDY Newbie

Joined: 14 Sep 2004 Posts: 16 City: JAX
|
|
| Back to top |
|
 |
Jensen Wakeboarder.com Freak

Joined: 06 Jul 2004 Posts: 3108 City: Chico
|
Posted: Oct 10, 2004 6:27 pm Post subject: |
|
|
| dreamweaver kicks ass. download the trial at www.macromedia.com . then dl the patch at www.crack.am *cough, cough* |
|
| Back to top |
|
 |
Mike Isler Moderator


Joined: 11 Jan 2003 Posts: 718 City: New York
|
Posted: Oct 10, 2004 6:37 pm Post subject: |
|
|
| scooter wrote: | | now do you use notepad or word pad or wat ever to make real websites like wakeboarder.com? |
Absolutely, contrary to what people are saying about DreamWeaver / FrontPage / Other WYSIWYG Editors. If you have a knowledge of HTML, perhaps some experience with CSS as well, you can make wakeboarder.com or any other large website. Wakeboarder.com is powered by a custom-written PHP script that you could never create in DreamWeaver.
It's not too difficult to learn HTML, and when combined with basic page layout concepts and simple graphical additions and tasteful colors, successful websites can be created. You can do everything that DreamWeaver does, by hand. If you do it by hand, too, you'll learn a hell of a lot more and be able to make minor changes or major changes to a page without using DreamWeaver... you can use Notepad/TextEdit/SimpleText/Pico/Emacs/VI or whatever your favorite text editor is. My website was created entirely with a text editor and Photoshop for the graphics. When I make small changes to text and add links and such, I simply telnet into my server, fire up Pico, and make the changes that need to be done. Very simple, very fast. |
|
| Back to top |
|
 |
Fredrick Eisenhauer Wakeboarder.Commie

Joined: 05 May 2003 Posts: 1600 City: Australia, W.A
|
Posted: Oct 10, 2004 8:00 pm Post subject: |
|
|
Scrolling marquee is what you mean by scrolling text right?
<MARQUEE bgcolor="#FFFFFF" loop="-1" scrollamount="4" width="50%">Fred's car wash</MARQUEE>
I found you a code for a clock. I got it off www.dynamicdrive.com it has heaps of DHTML codes for your site, cool site.
Put this bit into the head...
<style>
<!--
.styling{
background-color:black;
color:lime;
font: bold 15px MS Sans Serif;
padding: 3px;
}
-->
</style>
And this where you want the clock to appear
<span id="digitalclock" class="styling"></span>
<script>
<!--
/*****************************************
* LCD Clock script- by Javascriptkit.com
* Featured on/available at http://www.dynamicdrive.com/
* This notice must stay intact for use
*****************************************/
var alternate=0
var standardbrowser=!document.all&&!document.getElementById
if (standardbrowser)
document.write('<form name="tick"><input type="text" name="tock" size="6"></form>')
function show(){
if (!standardbrowser)
var clockobj=document.getElementById? document.getElementById("digitalclock") : document.all.digitalclock
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var dn="AM"
if (hours==12) dn="PM"
if (hours>12){
dn="PM"
hours=hours-12
}
if (hours==0) hours=12
if (hours.toString().length==1)
hours="0"+hours
if (minutes<=9)
minutes="0"+minutes
if (standardbrowser){
if (alternate==0)
document.tick.tock.value=hours+" : "+minutes+" "+dn
else
document.tick.tock.value=hours+" "+minutes+" "+dn
}
else{
if (alternate==0)
clockobj.innerHTML=hours+"<font color='lime'> : </font>"+minutes+" "+"<sup style='font-size:1px'>"+dn+"</sup>"
else
clockobj.innerHTML=hours+"<font color='black'> : </font>"+minutes+" "+"<sup style='font-size:1px'>"+dn+"</sup>"
}
alternate=(alternate==0)? 1 : 0
setTimeout("show()",1000)
}
window.onload=show
//-->
</script> _________________
 |
|
| Back to top |
|
 |
|
|
|