Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

base要素 href属性

ドキュメントの基底URLを表します。

使用例

<!DOCTYPE html>
<html lang="ja">
<head>
<title>Hello! HTML5</title>
<base href="http://localhost/hoge/">
<meta charset="UTF-8" />
</head>
<body>
<!-- http://localhost/hoge/bar.htmlがリクエストされる。 -->
<a href="bar.html">bar</a>
</body>
</html>