HTML (5)
VIDEO
- Container = These element require a closing tag
- Empty = These element does not require closing tag
Background Graphics
- Background Tag = This tag is used to change the background
Eg ↓↓↓↓↓↓
<html>
<head>
<title>sample page</title>
</head>
<body background = "filename.gif">
sample text
</body>
</html>
Eg ↓↓↓↓↓↓↓
<html>
<head>
<title>My Page</title>
<head>
<body bgcolor ="yellow">
sample text
</body>
</html>
Eg ↓↓↓↓↓↓
<html>
<head>
<title>My page</title>
</head>
<body text = "red">
Sample Text
</body>
</html>
sample text
</body>
</html>
- Background color = This tag is used to change the background color
Eg ↓↓↓↓↓↓↓
<html>
<head>
<title>My Page</title>
<head>
<body bgcolor ="yellow">
sample text
</body>
</html>
- Text Color = This tag is used to change the color of the Text
Eg ↓↓↓↓↓↓
<html>
<head>
<title>My page</title>
</head>
<body text = "red">
Sample Text
</body>
</html>
- Link Color = This tag is used to change the Color of Link
- link = link color
- vlink = visited link color
- alink = active link color
Eg ↓↓↓↓↓↓
<html>
<head>
<title>My Page </title>
</head>
<body link = "red" vlink = "blue" alink = "yellow">
sample text
</body>
</html>
0 Comments