HTML/CSS/Basic Tags
Версия от 09:21, 26 мая 2010; (обсуждение)
- Anchor
- Anchor Email
- Anchor class
- Anchor name
- Header
- b
- base
- bgsound
- body
- br
- center
- hN
- head
- height
- hr
- html
- i
- id
- lang
- marquee
- media
- p
- point size
- pre
- profile
- text
- title
- type 2
"font" Example
<html>
<head>
<title>font element example</title>
</head>
<body>
<font face="Verdana, Arial, Helvetica, sans-serif" size="30" color="#006699">
This element is an inline element.
</font>
<br>
<font face="Times New Roman, Times, serif" size="40" color="#CC3366">
<i>This fontwill appear in Times.</i>
</font>
<br>
<font face="Courier New, Courier, mono" size="20" color="#0000FF">
Courier New.
</font>
<font size="20" color="#0000FF">
size and color
</font>
<font color="#0000FF">
color
</font>
</body>
</html>