programming-examples/css/Base sets a base URL for the website.html
2019-11-15 12:59:38 +01:00

11 lines
285 B
HTML

<html>
<head>
<title>base element - base sets a base URL for the website</title>
<base href="http://www.happycodings.com" target="_blank">
</head>
<body>
<p>
<a href="index.html">happycodings</a> code examples.
</p>
</body>
</html>