# CSS Class and Style Sheet

Preview Full HTML

index.html

<html>

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

<body>
    <div class="box">

    </div>
    <div class="box">
        <h1>Hello</h1>
    </div>
    <div class="box circle">

    </div>

</body>

</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

style.css

.box {
    width: 100px;
    height: 100px;
    background-color: yellow;
}

.circle {
    border-radius: 50%;
}
1
2
3
4
5
6
7
8