|
|||||||
<link> - specify relationships between the current document and external resource
Время создания: 01.10.2017 11:06
Раздел: HTML
Запись: xintrea/mytetra_db_mcold/master/base/1506845185s8qkltvrwk/text.html на raw.githubusercontent.com
|
|||||||
|
|||||||
The HTML <link> Tag The HTML <link> tag is used to specify relationships between the current document and external resource. Following is an example to link an external style sheet file available in css sub-directory within web root − <!DOCTYPE html>
<html>
<head> <title>HTML link Tag Example</title> <base href = "http://www.tutorialspoint.com/" /> <link rel = "stylesheet" type = "text/css" href = "/css/style.css"> </head>
<body> <p>Hello, World!</p> </body>
</html>
This will produce the following result − |
|||||||
Так же в этом разделе:
|
|||||||
|
|||||||
|