zoukankan      html  css  js  c++  java
  • 前端开发环境

    网上有很多种选择,综合考虑我选择 Visual Studio Code.

    环境基础设置:File -> Preferences -> Settings. 可以考虑设置的参数有三个如下图:

    {
    "editor.fontSize": 14,
    "files.autoSave": "afterDelay",
    "editor.wordWrap": "on"
    }

    可以考虑安装的基础插件有以下几个

    创建第一个html页面:! + Enter 就会完成以下编码

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
    </head>
    <body>
    </body>
    </html>

    在加个主题:body下面 h1+Enter + "hello darrenqiao!"

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
    </head>
    <body>
        <h1>hello darrenqiao ! </h1>
    </body>
    </html>

    运行:右键 + "open with live server" 

     第一编程感受:超级简单好用

  • 相关阅读:
    数据窗口的缓冲区
    RowsMove()
    update
    defparameter defconstant
    1+ 1
    原则
    incf decf
    eql equal
    上司找谈话
    判断回文的函数palindrome?
  • 原文地址:https://www.cnblogs.com/darrenqiao/p/9204269.html
Copyright © 2011-2022 走看看