HTML开坑
Posted 飞凡可期
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML开坑相关的知识,希望对你有一定的参考价值。
html不仅仅做网页,做属性输入和配置文件也不错
配置个visual studio
因为也不是新手,跳过用txt文本来写 之类的东西了!
- 配置了一个VS的编译器,好用啊!html各种提示,只需要简单下一个open browser插件就行
- 兼容cpp等语言,非常便利
- 发现所谓标记语言和编程语言是有差异的,html天生不是为了实现功能,实现需要加载js(javascript)之类的插件。
helloworld
- 基本结构
- 标题、段落、对齐、背景
- 超链接
<a href=>, <img src=>
<!DOCTYPE html>
<html lang="zh-cn">
<body bgcolor="green">
<h1>
Hello html World!
</h1>
<h2 dir="rtl"> head 2 level</h2>
<h3 dir="auto"> head 3 level</h3>
<!-- 水平线-->
<hr />
<p> I'm first time in html world!<br />
Same paragraphs!
</p>
<h2 align="center">
春晓
</h2>
<p align="center">春眠不觉晓,<bt />
</p>
<p align="center">处处闻啼鸟。<bt />
</p>
<p align="center">夜来风雨声,<bt />
</p>
<p align="center">
花落知多少。<bt />
</p>
<a href = "https://www.w3school.com.cn/html/html_basic.asp">
W3School html page!
</a>
<!-- 图像,注意-->
<p>
<img src="./tryImag.jpg" width="500" height="200" />
</p>
<bt />
<hr />
<hr />
</body>
</html>
以上是关于HTML开坑的主要内容,如果未能解决你的问题,请参考以下文章