记录我的前端学习情况
HTML列举一些HTML中常用标签
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 <!-- H5 = HTML5 --><!DOCTYPE html><!-- html根标签 --><html> <!-- 头标签 --> <head> <!-- 配置标签,属性配置,支持中文 --> <meta charset="utf-8" ...
如何从0开始搭建博客
注册GitHub![[Pasted image 20240322072323.png]]注册github,并建立一个公共仓库,以用户名+github.io命名
安装git官网搜索最新版本的下载即可![[Pasted image 20240322072448.png]]下载完成后桌面右键会出现Git Bash Here和Git GUI Here,即下载成功![[Pasted image 20240322072654.png]]
绑定github并提交文件用git上传本地文件到github首先需要用SSH登录远程主机。有两种登录方式:一种是口令登陆,一种是公钥登录。口令登录每次都要输入密码,因此我选择了公钥登录的方式。首先要在github上添加SSH Key配置,想要生成SSH Key,就要先安装SSH。因为我们安装了Git,所以应该自带SSH,接下来我们首先检查是否已经安装了SSH.
检查是否安装SSH,并将GitHub绑定SSH Key
新建gitcode文件夹,在新建的文件中打开git bash,输入命令ssh,若与下图一致,则SSH已安装![[Pasted image 202403 ...
HelloWorld!
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment