Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9140135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:28:36+00:00 2026-06-17T09:28:36+00:00

I am trying to learn CSS, so far it seems that changing HTML to

  • 0

I am trying to learn CSS, so far it seems that changing HTML to CSS is more of just changing font, colors, text size, tables and background to some CSS statements.

My problem is I am not sure what HTML I still need and what to remove.
Where do I put the CSS stuff?
Basic HTML trying to learn with this easy one:

<html>
<head>
<title>CSS practice</title>
</head>

<body style="background-color:white;">

<table border="1" width="990" bgcolor="#99CCFF">
  <tr>
    <td width="990"><p align="center"><font face="Arial Black" size="6" color="#680000">DDDD</font></td>
</tr>
</table>
<table border="0" width=990 bgcolor="#000000" cellspacing="0" cellpadding="0">
<tr>
<td width="990"><font color="#FFFFFF" face="Arial" size="2"><b> Personal Portfolio</b>    </font></td>
</tr>
</table>
<table border="0" width=990 cellspacing="0" cellpadding="0">
<tr>
<td width="18%" bgcolor="#99CCFF" valign="top">&nbsp;
  <p style="margin-left: 20"><b><font face="Arial" size="2" color="#000000">
  <a href="index.html"> Home </a><br><br>
  <a href="about.html"> About Me </a><br><br>
  <a href="outreach.html"> Outreach </a><br><br>
  <a href="contact.html"> Contact Me </a><br><br>
  <a href="experience.html"> Experience </a><br><br>
  <a href="education.html"> Education </a><br><br> 
  <a href="skills.html"> Skills </a><br><br>

<td width="61%" valign="top">
  <blockquote>
    <p><br>
    <font face="Arial" size="5">Welcome</font></p>
    <p><font size="2" face="Arial"> Aspiring CSS programmer </font></p>
    <img src="me.jpg" alt="US"/>
  </blockquote><br><br>
  <p align="center"><font face="Arial" size="1">© COPYRIGHT 2012 ALL RIGHTS
  RESERVED </font></td>

<table border="0" width="990" bgcolor="#000000" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"><font size="1">&nbsp;</font></td>
</tr>
</table>

</body>

</html>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T09:28:37+00:00Added an answer on June 17, 2026 at 9:28 am

    Start from scratch. Building semantic HTML is about focusing only on content, and you will find out that its a lot easier than make the ol’table HTML.

    Table-less, semantic HTML

    Your new HTML should look like this:

    <html>
      <head>
        <title>CSS practice</title>
        <link rel="stylesheet" href="css-file.css" type="text/css">
      </head>
    
      <body>
        <span>DDDD</span>
        <h1>Personal Portfolio</h1>
        <nav>
          <a href="index.html"> Home </a>
          <a href="about.html"> About Me </a>
          <a href="outreach.html"> Outreach </a>
          <a href="contact.html"> Contact Me </a>
          <a href="experience.html"> Experience </a>
          <a href="education.html"> Education </a>
          <a href="skills.html"> Skills </a>
        </nav>
        <p>Welcome <span>Aspiring CSS programmer</span></p>
        <img src="me.jpg" alt="US"/>
        <span>© COPYRIGHT 2012 ALL RIGHTS RESERVED</span>
      </body>
    </html>
    

    See? Just the contents, nothing about styles at all. Much simpler!

    So after that you can start moving on CSS with your new separated css-file.css (look the css declaration inside the head tag).

    CSS styles

    CSS is just about finding paths to your HTML elements, and then styling it. It’s really easy.

    For example, you could spot and style your title like:

    h1 {
      font-family: "Verdana";
      font-weight: bold;
    }
    

    … your menu buttons like:

    nav a {
      color: blue;
      text-style: italic;
    }
    

    nav a means you want to style every a tag living inside a nav tag, leaving unstyled the a ones outside of a nav tag.

    Well… and this is a path! Build your paths freely, as long they meet their respective targets (the HTML elements).

    Classes and IDs

    Every tag in HTML can have both a class and an id attribute. Apply them freely into your HTML tags to help you spot your elements. Use them like this:

    <span class="class_name" id="id_name">content</span>
    

    In your CSS, you can refer to a class by putting a dot before the name, like:

    nav a.class_name {
      color: blue;
      text-style: italic;
    }
    

    So the styles will be applied to every a tag that has the class-name class, living inside a nav tag.

    Id‘s will work the same way, but in CSS you refer to them by placing a hash (#) instead of the dot we used for class.

    That’s it, you have already begun. 🙂

    I personally would recommend you start from here: How to make websites.
    And remember… use LOTS of Google.
    You’ll be there in no time.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to learn more CSS. I inherited a nice layout that I
I am trying to learn HTML/CSS and during the course I thought of creating
trying to learn some html/css and I'm having a problem with fixed position divs.
I'm trying to learn some html/css/javascript, so I'm writing myself a teaching project. The
Trying to learn html/css. I've been looking at the html & css files of
I am trying to learn HTML/CSS by trying to make simple website in HTML/CSS.
I'm new to CSS and HTML here and I'm trying to learn how to
I've just started trying to learn JS so apologies if this seems like a
I'm trying to learn CSS/HTML at the moment so sorry if there is a
I'm trying to learn to write more efficient CSS, particularly as I'm working with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.