forked from Crayon-Shinchan/AnyDressing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
57 lines (52 loc) · 1.99 KB
/
test.html
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
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Academic GitHub Page</title>
<!-- 引入 Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@400;700&family=Raleway:wght@400;700&family=Oswald:wght@400;700&family=Lora:wght@400;700&family=Merriweather:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1.5em;
margin-bottom: 0.5em;
}
.montserrat-font {
font-family: 'Montserrat', sans-serif;
}
.playfair-display-font {
font-family: 'Playfair Display', serif;
}
.raleway-font {
font-family: 'Raleway', sans-serif;
}
.oswald-font {
font-family: 'Oswald', sans-serif;
}
.lora-font {
font-family: 'Lora', serif;
}
.merriweather-font {
font-family: 'Merriweather', serif;
}
</style>
</head>
<body>
<h1 class="montserrat-font">Montserrat 小标题示例</h1>
<p>这是一个使用 Montserrat 字体的小标题示例。</p>
<h2 class="playfair-display-font">Playfair Display 小标题示例</h2>
<p>这是一个使用 Playfair Display 字体的小标题示例。</p>
<h3 class="raleway-font">Raleway 小标题示例</h3>
<p>这是一个使用 Raleway 字体的小标题示例。</p>
<h4 class="oswald-font">Oswald 小标题示例</h4>
<p>这是一个使用 Oswald 字体的小标题示例。</p>
<h5 class="lora-font">Lora 小标题示例</h5>
<p>这是一个使用 Lora 字体的小标题示例。</p>
<h6 class="merriweather-font">Merriweather 小标题示例</h6>
<p>这是一个使用 Merriweather 字体的小标题示例。</p>
</body>
</html>