-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 973 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 973 Bytes
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>欢迎来到这里</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main class="welcome-card" aria-labelledby="welcome-title">
<p class="eyebrow">Welcome</p>
<h1 id="welcome-title">欢迎来到我们的网页</h1>
<p class="intro">
愿你在这里发现灵感、收获知识,并开启一段轻松愉快的体验。
</p>
<div class="actions">
<a class="primary-button" href="#start">立即开始</a>
<a class="secondary-button" href="#learn-more">了解更多</a>
</div>
</main>
</body>
</html>