How To Write CSS
How To Write CSS
Inline style
(example)
This is an easy method to use, but the more styles you want to set, the
longer the description will be.
(example)
Describe in <style>
This method uses the <style> tag of HTML and describes CSS within it.
(example)
<!DOCTYPE html>
1
<html lang="ja">
2
<head>
3
<meta charset="utf-8">
4
<title>DIC cafe</title>
5
<!-- Install style tag -->
6
<style>
7
h1 {
8
color: red;
9
}
10
</style>
11
</head>
12
<body>
13
<h1 class="title">Title</h1>
14
<p>Contents</p>
15
</body>
16
</html>
17