Jump to content

Giulia

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by Giulia

  1. hello!

     

    I am new to coding and I am facing a problem creating an external style sheet.

    I have a folder named "CINO", here I ave all my .html files

    In this folder there is a folder, named "CSS". Here inside thereis the style.css file.

     

    the coding goes like this, but in the browser there is no sign of a change. Could anyone help me to understand where I am overlooking a mistake?

     

     <!DOCTYPE html>
    <html>
           <head>

               <link rel="stylesheet" href="/css/style.css" >
           <title>CINO</title>

       
            <h1>CINO</h1>
               <nav>
                    <a href="About.html">About</a>
                    <a href="Work.html">Work</a>
                    <a href="Contact.html">Contact</a>
                    <a href="Lab.html">Lab</a>

                </nav>

           </head>


    <body>
    visual strategies
    </body>

    </html>


    ///// CSS File

        body {

            font-family: Helvetica;
            font-size:1000px;
            line-height: 1.5;

            background-color: #d94958;
            color: #d99f01;
             margin: 40px auto 40px auto;
            width: 620px;
                }

        h1 {
            
         font-size: 24px;
         font-weight: 700;
        }

     

×
×
  • Create New...