You are on page 1of 3

HTML LAYOUT – Anisa Melishte

HTML LAYOUT

Layout-i për një website është struktura e website-it.

<!DOCTYPE html>
<html>

<head>
<style>
#header {
background-color:steelblue;
color:white;
text-align:center;
padding:5px;
}
#nav {
line-height:30px;
background-color:#48D1CC;
color:white;
height:350px;
width:110px;
float:left;
padding:5px;
}
#section {
width:350px;
float:left;
padding:10px;
HTML LAYOUT – Anisa Melishte

}
#footer {
background-color:steelblue;
color:white;
clear:both;
text-align:center;
padding:5px;
}
</style>
</head>

<body>

<div id="header">
<h1> Zhvillim Websitesh </h1>
</div>

<div id="nav">
HTML<br>
CSS<br>
JavaScript<br>
PHP<br>
<summary>

</summary>SQL</div>

<div id="section">

<h2>WEBSITE LAYOUT:

</h2>

<p>
Layout duke përdorur Id-të Html, tagu div përdoret për grupimin e tageve html në blloqe:
<br>Header : Përcakton kokën e dokumentit .
<br>Navigation : Përcakton navigimin ose menutë.

<br>Content : Përcakton artikujt e faqes web.


<br>Sidebar : Përcakton përmbajtjen përbri artikullit kryesor.
<br>Footer : Përcakton përmbajtjen e fundit të dokumentit.

</p>
HTML LAYOUT – Anisa Melishte

</div>

<div id="footer">
&copy; Zhvillim Websitesh

</div>

</body>
</html>

You might also like