Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS Help – New

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #23539
    jules17
    Member

    Hi,

    I understand the CSS is a much easier way of designing webpages. However, I cannot find anywhere where it compares what I am suppose to start my CSS file off with, and what the heck I am suppose to put in dreamweaver to make my page. I am currently beyond frustrated :|

    #50956
    Jonz
    Member

    To link to an External CSS file you type:
    <link href="styles.css" rel="stylesheet" type="text/css">

    then when you make your style sheet (styles.css)
    you can start with styling the body of your page.

    body {
    background-color: red;
    color: blue; <– this is for font
    font-size: 11px;
    }

    ect.. DreamWeaver will help you along the way as well.

    https://css-tricks.com/video-screencasts … rt-1-of-3/
    https://css-tricks.com/videos/css-tricks-video-2.php
    https://css-tricks.com/videos/css-tricks-video-3.php

    look at the above videos it will help with the first steps to css

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.