Answers for "how to start css"

CSS
0

how to refer to external style sheet

<html>
<head>
<link rel="stylesheet" type="text/css" href="Name.css">
</head>
<body>
.
.
.
</body>
Posted by: Guest on August-05-2020
0

start a css file

*{
    margin: 0;
    padding: 0;
    color: unset;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    overflow-x: hidden;
}
Posted by: Guest on October-23-2020
0

how to start css

/* A style tag will do it*/
<style></style>
Posted by: Guest on September-23-2021

Browse Popular Code Answers by Language