html学习第一天

其实应该是复习的,作为计算机科班出身的,大学里真的是学过不少前端知识

html超文本标记语言,不区分大小写,大部分为双标签,单标签元素<br/>换行 <pr/>下划线

标题 <h1> </h1> ......<h6> </h6>字体由大到小   文字 <font size=6> </font> ...<font size =1>  </font>文字字体由大到小

段落<p> </p> 省略段落中的换行或回车

文本 <b>加粗</b> <l> 斜体</l> <sub>下标 </sub> <sup>上标 </sup>

超链接< a href="url";target="_blank">链接文本</a>其中的href相当于a标签的属性target属性设置链接网页是在此网页的使用id射中本页中连接跳转的地方

头部<head></head> 可以添加在其中的标签元素有<title>标题, <style>样式, <meta>元素, <link>, <script>, <noscript>, and <base>默认链接目标

css

  • 内联样式- 在HTML元素中使用"style" 属性
  • 内部样式表 -在HTML文档头部 <head> 区域使用<style> 元素 来包含CSS
  • 外部引用 - 使用外部 CSS 文件

图片 <img src="url" ;alt="some_text";style="float:right">src属性图片地址,alt图片加载不出来时的提醒,style图片悬浮

表格

<table border="1">
<tr>
<td>row 1, cell 1</td> 
</tr>
<tr>
<td>row 2, cell 1</td>
</tr>
</table>两行一列
列表 无序
<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>
   有序
<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>
自定义列表
<dl> </dl>
表单
<form action="demo_form.php" method="post/get">
<input type="text" name="email" size="40" maxlength="50">
<input type="password"> <input type="checkbox" checked="checked">
<input type="radio" checked="checked">
<input type="submit" value="Send">
<input type="reset">
<input type="hidden">
<select>
<option>苹果</option>
<option selected="selected">香蕉</option>
<option>樱桃</option>
</select>
<textarea name="comment" rows="60" cols="20"></textarea>
</form>
 
posted @ 2020-03-24 17:09  pjc的乖宝宝  阅读(142)  评论(0编辑  收藏  举报