2016-02-19 43 views
-1
<!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

你忘記了你的開放標籤 – j08691

+0

oops mah bad:D – Uruk

+0

這個問題在這裏得到了解答:http://stackoverflow.com/questions/10989238/center-align-image-within-div-horizo​​ntally –

回答

0

<link rel="import" href="your_imported_HTML.html"> 
 

 
this will also import any scripts,css that are in the imported html file

0

將您的圖像在一個div和使用margin auto,允許用css任何文本或其他內容。

您可以將標題保存爲單獨的php文件(例如header.php),然後使用include('header.php')將文件包含在任何其他頁面中。 在html正文部分。

例子:

<body> 
include ('header.php') 

使用此在每個頁面相同的效果。

相關問題