-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3.html
More file actions
52 lines (46 loc) · 1.51 KB
/
3.html
File metadata and controls
52 lines (46 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
/* h1{
font-size: 40px;
font-weight: normal;
}
h2{
font-size: 40px;
font-weight: normal;
} */
/* h1,h2{
font-size: 40px;
font-weight: normal;
} */
/* 選取目標1,選取目標2,選取目標3 */
/* .news h2, .events h2{
color:blue;
font-size:30px;
} */
.main-title {
font-size: 40px;
border-bottom: 1px solid #888
}
.news .main-title{
color:blue;
font-size:40px;
}
</style>
</head>
<body>
<div class="news">
<h2 class="main-title">news title 1</h2>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Nemo ipsa quisquam repellendus quidem, officia culpa vel at! Ea, doloribus maiores repellat magni error fuga aperiam in expedita, accusantium fugiat velit!</p>
</div>
<div class="events">
<h2 class="main-title">events title 2</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Rem impedit sapiente repellat sequi rerum eveniet laudantium! Aliquid sed dolorum, asperiores est quae, dicta, magni nemo obcaecati excepturi soluta fugit impedit?</p>
</div>
</body>
</html>