PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Wednesday, July 13, 2022

[FIXED] how can i add space between table border and text using html only?

 July 13, 2022     html, html-table, javascript, web-deployment     No comments   

Issue

the image is the final output I want

HI can someone pls help me I am new to code and this is my college assignment in which we are not supposed to use CSS, only using HTML how can I add space between text and table-border.

<!DOCTYPE html>
  <HTML>

  <HEAD>
    <TITLE>TABLE</TITLE>
  </HEAD>

  <BODY>
    <TABLE BORDER="5" CELLSPACING="4" CELLPADDING="3">
      <TR BGCOLOR="BLUE">
        <TH ALIGN="CENTER" HEIGHT="20">
          <FONT SIZE="4" COLOR="WHITE"> <u>First Name</u>
        <TH ALIGN="CENTER" HEIGHT="20">
          <FONT SIZE="4" COLOR="WHITE"> <u>Last Name</u>
      </TR>
      <TR BGCOLOR="YELLOW">
        <TD> <u>Keith</u>
        <TD><u>Richards</u>
      </TR>
      <TR BGCOLOR="ORANGE">
        <TD><u>Mick</u>
        <TD><u>Jagger</u>
      </TR>
      <TR BGCOLOR="YELLOW">
        <TD><u>Bill</u>
        <TD><u>Wyman</u>
      </TR>
      <TR BGCOLOR="ORANGE">
        <TD><u>Ron</u>
        <TD><u>Wood</u>
      </TR>
      <TR BGCOLOR="YELLOW">
        <TD><u>Charlie</u>
        <TD><u>Watts</u>
      </TR>
      <TR BGCOLOR="ORANGE">
        <TD><u>Mick</u>
        <TD><u>Taylor</u>
      </TR>
      <TR BGCOLOR="YELLOW">
        <TD><u>Brian</u>
        <TD><u>Jones</u>
      </TR>
    </TABLE>
  </BODY>

  </HTML>

my code-


Solution

<TD> <u>&nbspKeith</u> </TD>

Try using &nbsp should give you the desired result.



Answered By - Jan Weßeling
Answer Checked By - Mildred Charles (PHPFixing Admin)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing