-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 1001 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (28 loc) · 1001 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
26
27
28
29
30
31
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GitHub Practice</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main class="app">
<section class="panel">
<p class="eyebrow">GitHub Practice</p>
<h1>我的第一个练习项目</h1>
<p class="intro">这个页面用来练习 Git 提交、分支和 GitHub Pull Request。</p>
<form id="note-form" class="note-form">
<input id="note-input" type="text" placeholder="写一条学习记录" autocomplete="off">
<button type="submit">添加</button>
</form>
<button id="clear-notes" class="clear-button" type="button">清空记录</button>
<ul id="notes" class="notes">
<li>初始化项目</li>
<li>学习 commit</li>
</ul>
</section>
</main>
<script src="script.js"></script>
</body>
</html>