[Html] Html Basic 2
p.html
<!DOCTYPE html>
<html>
<head>
<title>about p tag</title>
</head>
<body>
<p>
The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser.
</p>
<p>
It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.
</p>
</body>
</html>
br.html
<!DOCTYPE html>
<html>
<head>
<title>about br tag</title>
</head>
<body>
The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser.
<br>
It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.
</body>
</html>
img.html
<!DOCTYPE html>
<html>
<head>
<title>about Duomo di Firenze</title>
</head>
<body>
<h1>Duomo di Firenze</h1>
<img src="firenze.jpg" width="700" height="500" alt="Duomo di Firenze" title="Duomo di Firenze">
<!-- alt == alternative text -->
</body>
</html>
table.html
<!DOCTYPE html>
<html>
<head>
<title>table</title>
</head>
<body>
<h1>table</h1>
<table border="2">
<thead>
<tr>
<th>name</th><th>backnum</th><th>pos</th><th>pic</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ronaldo</td><td>99</td><td>fw</td><td><img src="ronaldo.jpg" width="100" height="100"></td>
</tr>
<tr>
<td>Kaka</td><td>22</td><td rowspan="2">mf</td><td><img src="kaka.jpg" width="100" height="100"></td>
</tr>
<tr>
<td>Ronaldinho</td><td>80</td>mf<td><img src="ronaldinho.jpg" width="100" height="100"></td>
</tr>
</tbody>
<tfoot>
<td>backnum sum</td><td colspan="3">201</td>
</tfoot>
</table>
</body>
</html>
댓글남기기