create repo.

This commit is contained in:
Hmtsai 2024-05-02 13:44:52 +08:00
commit 5002f6a103
3 changed files with 34 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.~undo-tree~

12
index.css Normal file
View File

@ -0,0 +1,12 @@
*{
padding:0;
margin:0;
color:#fff;
}
#naviBar{
height:55px;
width:100%;
background-color: #3f3f5f;
display: flex;
}

21
index.html Normal file
View File

@ -0,0 +1,21 @@
<!doctype html>
<html>
<head>
<title>Hmtsai's Website</title>
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<div id="naviBar">
<a href="#">Hmtsai's Website</a>
<a href="blog.hmtsai.cn">Blog</a>
<a href="git.hmtsai.cn/hmtsai">Gitea</a>
</div>
<div id="content">
<h1 style="text-align: center;">Welcome to Hmtsai's Website</h1>
</div>
</body>
</html>