Blogger Information
Blog 20
fans 0
comment 0
visits 13745
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第1章 前端学习环境与HTML简介——2019年4月22日22:00
KA的博客
Original
438 people have browsed it

1、创建线上环境的步骤

* 创建虚拟主机与本地域名(主机名) ——使用php工具箱进行配置

* 将本地域名与本机IP绑定(127.0.0.1) ——修改hosts文件

HTTP是超文本传输协议,是客户端和服务器端的请求/应答标准;

HTML是超文本标记语言,一种网页文本语言。基本结构如下(基本格式:标签+格式)



实例

<!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>我的第一个网站</title>
</head>
<body>
    <h2>hello world</h2>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post