Enhance the fight against white diary (Section I) - web front-end entry-ready

In the next time, I will be in-depth system to share my learning experience from entry to, to introduce and explain from a white to veterans, and what must learn, like you can focus on me. . . . . .
First, the two artifacts entry PhotoshopCC, Visual Studio Code, PScc I recommend using more than 2018 version, there are a lot more convenient to some subsequent application, VS has a crack in the online version of the best and newer versions. Specific Baidu cloud can download it very easy installation of your mother are introduced.
Here Insert Picture Description
web front end of three core technologies, HTML, css, JavaScript.
HTML: HTML, the main framework used to build the site.
css: the site of some simple modifications, that is the style of the building.
js: do the site complex effects, and interactions.

Of course, there is the back end of something, they are relatively fragmented, would later explain one by one for everyone.

First as a program ape, use shortcut keys are very useful to enhance the efficiency of our knock code, here are some common shortcuts, the best memory of it.

**ctrl + s : 保存(保存我们vs写好的代码,每次运行前都不要忘记保存呦)
ctrl + x、ctrl + c、ctrl + v : 剪切、复制、粘贴
ctrl + a : 全选
shift + end : 从头选中一行
shift + home : 从尾选中一行
shift + alt + 上下键:快速复制一行
alt + + 上下键:快速移动一行
ctrl + z : 撤销
ctrl + y : 还原
alt + 光标左键:实现多光标的操作
ctrl + d : 快速选中后面一样的代码
tab : 向后缩进
tab + shift : 向前缩进**

The initial HTML code each time writing code to be knocked · Oh! ! ! ! ! ! ! !

*快捷键 : ! + tab键*

<!DOCTYPE html> : 文档声明 : 告诉页面,接下来要写html代码了。
<html lang="en"> : 根标签:html的最外层标签,包装所有的其他标签
                  : lang表示当前是什么语言en zh-cn
    <head>
        <meta charset="UTF-8">   meta : 元信息(辅助的信息)
                            UTF-8 :国际通用编码(防止乱码,很重要)
                            gb2312 gbk (了解)
        <title>Document</title>(网页的标题,也就是当打开网页时,浏览器上方显示的网页名称,请看下图)
    </head>
    <body>
        
    </body>
</html>

Here Insert Picture Description
Well, today's share being on these, next, will introduce entry-learning HTML.

Released five original articles · won praise 6 · views 517

Guess you like

Origin blog.csdn.net/vitasAA/article/details/104933008