style
parent
ec2510838e
commit
6d7f084c41
|
@ -2,9 +2,16 @@ body {
|
||||||
font: normal 500 1.3rem helvetica, sans-serif;
|
font: normal 500 1.3rem helvetica, sans-serif;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
main,header,footer{
|
.wrapper{
|
||||||
max-width: 960px;
|
max-width: 960px;
|
||||||
margin: 20px auto;
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
height: 160px;
|
||||||
|
background: #ddd
|
||||||
|
}
|
||||||
|
header img{
|
||||||
|
padding-top: 62px;
|
||||||
}
|
}
|
||||||
h1, h2{
|
h1, h2{
|
||||||
font-weight: 100;
|
font-weight: 100;
|
||||||
|
|
|
@ -6,19 +6,21 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="description" content="Die HTML Struktur in Webseiten">
|
<meta name="description" content="Die HTML Struktur in Webseiten">
|
||||||
<title>HTML Struktur</title>
|
<title>HTML Struktur</title>
|
||||||
|
<link rel="stylesheet" href="../css/reset.css">
|
||||||
<link rel="stylesheet" href="../css/code.css">
|
<link rel="stylesheet" href="../css/code.css">
|
||||||
<link rel="stylesheet" href="../css/style.css">
|
<link rel="stylesheet" href="../css/style.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<img src="../img/logo.svg" alt="Mein logo" title="Der Titel meines Bildes">
|
<div class="wrapper">
|
||||||
<nav role="navigation">
|
<img src="../img/logo.svg" alt="Mein logo" title="Der Titel meines Bildes">
|
||||||
|
<nav role="navigation">
|
||||||
</nav>
|
</nav>
|
||||||
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main role="main">
|
<main role="main" class="wrapper">
|
||||||
<h1>HTML5 Struktur einer Webseite</h1>
|
<h1>HTML5 Struktur einer Webseite</h1>
|
||||||
<article>
|
<article>
|
||||||
<h2>Bilder & Links</h2>
|
<h2>Bilder & Links</h2>
|
||||||
|
|
Loading…
Reference in New Issue