Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
I am new here and HTML too. Table question
Old 08-24-2006, 02:45 PM I am new here and HTML too. Table question
Average Talker

Posts: 16
Trades: 0
Hi, dear HTML fans
Please see my codes
I am going to add a link in a cell of the table.
Education points to Education lists etc.

What is wrong?
AND how to align them?
Code:
<html>
<body>

<head>
<center>
<h1>Biographical Summary of H.Z</h1>
<h6>[2006-08-30]</h6>
</center>
</head>


<img src ="moon.jpg" 
align = "right" border = "2" height = "150" width = "200" >


<br>
<br>

<table border = "1" align = "left" width = "40%">

<thead>
  <tr>
    <th align = "left">Topic</th>
    <th align = "center">Summary</th>
  </tr>
</thead>

<tbody>
    <tr>
        <td align = "left">
            
                <a href = "#MyEducation">
            <u>Education</u>
                </a>    
         </td>

        <td align = "center">...</td>
    </tr>    

    <tr>
        <td align = "left">
            <u>
            <a href = "#MyInterests>
            Interests
                </a>    
            <a name = "MyInterests">Interests</a>
            </u>
        </td>
        <td align = "center">...</td>
    </tr>

    <tr>
        <td align = "left">
            <u>
            <a href="form.html">Career Planes</a>
            </u>
        </td>
        <td align = "center">...</td>
    </tr>
</tbody>
</table>

<br>
<p>

<a name = "MyEducation"></a>
<h2>Education</h2>
    <ul>
       <li>NC A&T SU BS Degree</li>
       <li>NC A&T SU MS Degree</li>
    </ul>

</p>

<p>
<a name = "MyInterests"></a>
<h2>Interests</h2>
    <ul>
       <li>Electrical Engineering</li>
       <li>Computer Science</li>
    </ul>
</p>

</body>
</html>
zhshqzyc is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 08-24-2006, 03:22 PM Re: I am new here and HTML too. Table question
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Well, for one thing you have the <head> section INSIDE the <body>.. that's incorrect. Should be:

<html>
<head>
<title></title>
</head>
<body>
content
</body>
</html>

You also cannot put 'normal' markup in your <head> section the way you have it.

I would seriously suggest you learn propert HTML markup:
Build*Your*Own Web*Site The*Right*Way Using*HTML*&*CSS - SitePoint Books

You should not wrap <u></u> around a link.. bad markup. The <a href...> will automatically get an underline unless you turn it off with CSS.

You cannot put things like <ul>s and Hx's inside a <p> - again, improper markup.

Fix the markup and you'll have fewer problems.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 08-24-2006, 09:29 PM Re: I am new here and HTML too. Table question
kIDJOE's Avatar
Extreme Talker

Posts: 186
Location: Hollywood, CA
Trades: 0
Nice answer, you may wanna look a little bit into CSS to stayling and alaigning your links.
__________________

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE

kIDJOE is offline
Reply With Quote
View Public Profile Visit kIDJOE's homepage!
 
Old 08-25-2006, 01:39 AM Re: I am new here and HTML too. Table question
saadatshah's Avatar
Extreme Talker

Posts: 215
Name: Syed Saadat Ali
Location: Lahore, Pakistan
Trades: 0
Agreed
__________________
- -- --- ---- ----- ------ ------- ---------------
If you have knowledge, let others light their candles in it.
saadatshah is offline
Reply With Quote
View Public Profile Visit saadatshah's homepage!
 
Old 08-25-2006, 08:41 AM Re: I am new here and HTML too. Table question
Average Talker

Posts: 16
Trades: 0
I have no idea for CSS right now. So I just want only use HTML.
Would you please guide me the etails?

Thanks in advance
zhshqzyc is offline
Reply With Quote
View Public Profile
 
Old 08-25-2006, 08:58 AM Re: I am new here and HTML too. Table question
saadatshah's Avatar
Extreme Talker

Posts: 215
Name: Syed Saadat Ali
Location: Lahore, Pakistan
Trades: 0
If you want to stick with HTML use tables to align your data put everything in table cells you can learn HTML from W3Schools Online Web Tutorials
__________________
- -- --- ---- ----- ------ ------- ---------------
If you have knowledge, let others light their candles in it.
saadatshah is offline
Reply With Quote
View Public Profile Visit saadatshah's homepage!
 
Old 08-25-2006, 09:07 AM Re: I am new here and HTML too. Table question
Average Talker

Posts: 16
Trades: 0
Thanks

I know this web. but there is no any example regard with a link in a cell.
I hope anybody can give me an example.
zhshqzyc is offline
Reply With Quote
View Public Profile
 
Old 08-25-2006, 09:36 AM Re: I am new here and HTML too. Table question
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
<table>
<tr>
<td><a href="http://www.google.com">Google</a></td>
</tr>
</table>

That's all there is to it.. a link inside a cell.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 08-25-2006, 10:52 AM Re: I am new here and HTML too. Table question
Average Talker

Posts: 16
Trades: 0
Thanks,How to display the current time within a web page?
zhshqzyc is offline
Reply With Quote
View Public Profile
 
Old 08-25-2006, 10:54 AM Re: I am new here and HTML too. Table question
saadatshah's Avatar
Extreme Talker

Posts: 215
Name: Syed Saadat Ali
Location: Lahore, Pakistan
Trades: 0
HTML Code:
<html><script language="Javascript">setInterval("settime()", 1000);function settime () {  var curtime = new Date();  var curhour = curtime.getHours();  var curmin = curtime.getMinutes();  var cursec = curtime.getSeconds();  var time = "";  if(curhour == 0) curhour = 12;  time = (curhour > 12 ? curhour - 12 : curhour) + ":" +         (curmin < 10 ? "0" : "") + curmin + ":" +         (cursec < 10 ? "0" : "") + cursec + " " +         (curhour > 12 ? "PM" : "AM");  document.date.clock.value = time;}</script><body><form name="date"><input type="text" name="clock" style="border: 0px" value=""></form></body></html>
__________________
- -- --- ---- ----- ------ ------- ---------------
If you have knowledge, let others light their candles in it.

Last edited by saadatshah; 08-25-2006 at 10:56 AM..
saadatshah is offline
Reply With Quote
View Public Profile Visit saadatshah's homepage!
 
Old 08-25-2006, 02:10 PM Re: I am new here and HTML too. Table question
kIDJOE's Avatar
Extreme Talker

Posts: 186
Location: Hollywood, CA
Trades: 0
check your server plataform you may be able to use a single line if you want to avoid the JScript but the Jscript is good.
__________________

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
-

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE

kIDJOE is offline
Reply With Quote
View Public Profile Visit kIDJOE's homepage!
 
Reply     « Reply to I am new here and HTML too. Table question
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.46836 seconds with 12 queries