Pixel-Rabbit Blog

「What Do You Want to Do with Your Life?」 OR 「What Kind of Person Do You Want to Be?」

Make a WebSite for Myself

Make a WebSite for Myself 遇到的问题 fatal: unable to access ‘https://github.com/EricZhang121/my-website.git/': OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 0 解决方法:先清除~/.gitconfig git config --global --unset http.proxy git config --global --unset https.proxy ​ 接着在电脑内设置代理服务器,端口789

Git Learning

Git Learning git clone url push 流程: ​ git add . ​ git commit -m “description” ​ git push origin ​ git git push -u origin —远端无该分支时 查看本地分支: ​ git branch ​ 注:名称前面加* 号的是当前的分支 查

HTML Learning

HTML Learning 1. an easy demo for HTML code: <!DOCTYPE html> <html lang="zh-CN"> <!-- 设定HTML语言中文简体 --> <head> <!-- meta配置网页元信息--> <meta charset="UTF-8"/> <!-- 指定浏览器解码方式 --> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <!-- 解决IE浏览器

A JOURNEY of TIBET

1. 准备清单 预防高反的药和食品 葡萄糖 阿萨姆奶茶,或者买桶士力架 布洛芬 999感冒灵 眼药水\眼贴 氧气瓶(去了再买,千万不要随便吸氧气有依赖性) 衣物

CSS Learning

CSS Learning 1. 标签位置 1.1 行内样式 行内样式/内联样式,与其他两种样式相比优先级最高,eg: <h1 style="color: red;font-size: 20px;">这是标题</h1&g