操作方法
-
在github上完成注册后,新建仓库(New repository)
-
命名仓库时,要命名为“github用户名”+“.github.io”.(必须这样命名)
-
上传一个html文件到该仓库中,如index.html
内容:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
h1{
text-align: center;
font-size: 50px;
}
</style>
</head>
<body>
<h1>Github Blog</h1>
</body>
</html>
- 访问效果:
路径:https://cxyzy1.github.io/index.html
附录
关于git命令的使用,本文未涉及,可参考:http://www.runoob.com/w3cnote/git-guide.html
安卓开发技术分享: https://www.jianshu.com/p/442339952f26
更多技术总结好文,请关注:「程序园中猿」
网友评论