- Example
| HTML Title Element |
|---|
| <html> <head> <title>Title of the document</title> </head> <body> The content of the document...... </body> </html> |
- Example
| HTML Base Element |
|---|
| <head> <base href="http://www.w.example.com/images/" /> <base target="_blank" /> </head> |
- Example
| HTML Link Element |
|---|
| <head> <link rel="stylesheet" type="text/css" href="mystyle.css" /> </head> |
- Example
| HTML Style Element |
|---|
| <head> <style type="text/css"> body {background-color:yellow} p {color:blue} </style> </head> |