<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>HEX</title>
</head>
<header>
<img src="header.png" alt="head"/>
</header>
<body>
</body>
</html>
这第一部分是我正在使用的HTML,任何改进都会对我有所帮助!我需要将此图像放在页面中央,并将标题存储为单独的文件,以便我可以在网站的每个页面上使用它!我目前在我的css文件中没有任何内容,因为我尝试过的东西都不起作用!!
答案 0 :(得分:0)
<link rel="import" href="your_imported_HTML.html">
this will also import any scripts,css that are in the imported html file
&#13;
答案 1 :(得分:0)
将您的图片放入div并使用margin auto
,允许使用css的任何文字或其他内容。
您可以将标题另存为单独的php文件(例如header.php
),然后使用include('header.php')
将该文件包含在任何其他页面中。
在html正文部分。
示例:
<body>
include ('header.php')
在每个页面中使用此功能以获得相同的效果。