skip to Main Content

how to implement css code in html 5

how to implement css code in html 5 , while making ui and ux design without using complex function and codes , i need some better soluation.Please give me proper soluion iu have new in ui ux

2

Answers


  1. <!DOCTYPE html>
    <html>
    <title>
    </title>
    <head>
    </head>
    <link rel="stylesheet" type="text/css" href="style.css">
    <body>
    Now tou can try that easily
    </body>
    </html>
    
    Login or Signup to reply.
  2. You can add CSS in your HTML content there are have three ways

    1. Inline CSS
    2. internal CSS
    3. External CSS

    Further Details,

    enter link description here

    But if you want to brief answer to that question you can simply follow under code

    <link rel="stylesheet" href="styles.css"> 
    

    Check the image and get clear idea

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search