HTML Basic points

这篇文章是我学习html视频资料时候自己稍微试验的一些html代码。学习的主要点可能在这里就可以全部包括了。随着我学习视频,这篇代码会随时被更新。

<html>

<head>

<!-- comment -->

</head>

<body bgcolor="#EEEEEE">

<h1>h1</h1>
<h2>h2</h2>
<h2>h6</h2>

<a href="http://www.google.com"> google </a>
<a src=""/>before br
testing a
<a href="http://www.baidu.com" target="_blank">
<img src="../../1.jpg" alt="if the image is not shown" title="title" border="10"/>
</a>

<a href="#last">link to last a - jump to last</a>

<br/>br
<p/>p paragraph
<img src="1.gif" usemap"#my_map" width="150" height="80">
<font color="blue">
aa
</font>
</img>
<map name="my_map">
<area/>
</map>
<map name="my_map2">
<!--area/-->
</map>

<pre>
kald
df df
df pre df
</pre>

<center>center居中</center>

<ul>
<li> list 1 </li>
<li> list 2 </li>
<li> list 3 </li>
<li> list 4 </li>

</ul>

<ol>
</ol>

<table>
<thead align="right">
<th>first name</td>
<td>family name</td>
<td>age</td>
</tr>
<tr height="30" width="50">
<th border="5" bgcolor="blue">tr2 td1</td>
<td> <font color="red">tr2</font> <br/> td2</td>
<td align="right">tr2 td3<center>center 居 中</center></td>
</tr>
</table>

<a name="last"> last link </a>

<p>
<p>
</p>

缩略图
<a href="./images/large.jpg">click here for image<img src="./images/small.png"/></a>

<form action="Register.aspx">
<input type="text" size="100" value="默认值" maxlength="8" readonly="readonly"/>
<br/><input type="checkbox" checked="checked" />
<br/><input type="radio" name="radio1" />
</form>
</body>

<br/>

</html>

  

HTML Basic points,布布扣,bubuko.com

时间: 2024-12-21 21:41:36

HTML Basic points的相关文章

PHP: The big picture

Before getting down to to the business of writing some real PHP, I want to take a few minutes to explain some basics. PHP needs to be processed by the web server before the page can be viewed in a browser. So, as a rule, you need to store all pages i

CS102A Fall 2019 Project:

CS102A Fall 2019 Project: Xiangqi (象棋, ChineseChess)Figure 1: Board of XiangqiIntroductionXiangqi is a strategy board game for two players. It is one of the most popularboard games in China. The game represents a battle between two armies, withthe ob

Java learning notes (1):Basic Knowlege points

Basic Knowlege points: 1: it's necessary that there is only one public class in per .java file 2: .java file name should better to same as class name 3: when set the environment variable CLASSPATH, you should make sure the '.' path can't be lack of.

C++ basic salient points that I made mistakes on

int main(int argv, char* argc[]), argc[0] is always the program's name that you run switch() statement doesn't accept std::string. One way to solve this is to use enum, see here: link

[C++] Variables and Basic Types

Getting Started compile C++ program source $ g++ -o prog grog1.cc run C++ program $ ./prog The library, iostream, define four IO object: cin, cout, cerr, clog. std::cout << "hello world" << std::endl; The result of the output operato

hdu-5929 Basic Data Structure(双端队列+模拟)

题目链接: Basic Data Structure Time Limit: 7000/3500 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 207    Accepted Submission(s): 41 Problem Description Mr. Frog learned a basic data structure recently, which is called

NS Simulation Basic

这个网站上的一系列讲解NS2的内容真的是深入浅出,看完立刻豁然开朗.所以就接连转了几篇. Scheduling Events那篇里的例子特别好,看完就懂了. http://www.mathcs.emory.edu/~cheung/Courses/558-old/Syllabus/90-NS/ NS Simulation Basic Common NS classes The following figure shows the most commonly used NS classes in w

HDU 5929 Basic Data Structure 模拟

Basic Data Structure Time Limit: 7000/3500 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Problem Description Mr. Frog learned a basic data structure recently, which is called stack.There are some basic operations of stack: ? PUSH x: p

K points to origin

Given a bounch of points, ask to find K closest point to origin. This question can be changed. For example, here is origin, but there might be another point. Here is just a basic algorithm. //  main.cpp //  k points to origin //  Created by Xiaohe Hu