安卓开发安卓开发Android开发经验谈

利用Github Pages搭建个人博客

2019-04-01  本文已影响7人  蓝不蓝编程

操作方法

  1. 在github上完成注册后,新建仓库(New repository)


  2. 命名仓库时,要命名为“github用户名”+“.github.io”.(必须这样命名)


  3. 上传一个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>
  1. 访问效果:
    路径:https://cxyzy1.github.io/index.html

附录

关于git命令的使用,本文未涉及,可参考:http://www.runoob.com/w3cnote/git-guide.html

安卓开发技术分享: https://www.jianshu.com/p/442339952f26
更多技术总结好文,请关注:「程序园中猿」

上一篇下一篇

猜你喜欢

热点阅读