响应式 官网网站/潍坊seo网络推广
前言:虽然做了几个前端项目,但是属于项目组的赶鸭上架。我的前端基础还是非常薄弱,在网上找了一些网站,用于空闲时间学习。在此做下学习笔记,以做复习使用。
网站的课程讲的很好,很适合像我这样零基础的人学习,非常感谢网站的维护者,推荐下:绿叶学习网
1.img标签,自闭合标签,用于引入图片:
<!--img的src属性是必须的,值为图片路径--><img src="555.jpg" alt="加载未成功时显示" title="鼠标移上去就会显示--牛哥在此"/>
2. a标签,超链接,用于跳转:
<h3>a标签-外部链接</h3><!--a标签的href属性值为链接地址,target属性值为打开方式:_blank,空白页打开;_self,本页面打开--><a href="http://www.baidu.com" target="_blank">走,去百度</a><hr/><h3>a标签-内部链接</h3><!--a标签的href属性值为内部网页--><a href="index.html">内部链接</a><hr/><h3>a标签-锚点链接</h3><!--a标签的href属性值为id值--><a href="#xp">推荐英雄</a><div id="xp">小炮</div>
3.表单元素-form:
<form name="f1" method="post" action="index.html"><!--input标签type为text,单行文本框-->用户:<input type="text"/><br/><!--input标签type为password,密码框-->密码:<input type="password"/><br/>邮箱:<input type="text"/><!--select标签,选择框--><select><option>qq.com</option><option>163.com</option></select><br/>性别:<!--input标签type为radio,单选框,name属性值相同时,选项互斥--><input type="radio" name="sex" value="boy"/>男<input type="radio" name="sex" value="girl"/>女<br/>英雄:<!--input标签type为checkbox,复选框,配合label标签--><input id="c1" type="checkbox" checked/><label for="c1">小黑</label><input id="c2" type="checkbox"/><label for="c2">小炮</label><input id="c3" type="checkbox"/><label for="c3">小歪</label><br/>蝴蝶:<!--textarea标签,文本域,rows和cols控制大小--><textarea rows="8" cols="40">请介绍一下蝴蝶</textarea><br/>上传:<!--input标签type为file,文件域--><input type="file"/></form>
4. embed标签,引用音频、视频等多媒体:
<embed src="多媒体地址" width="播放界面宽度" height="播放界面高度"/>