EVACE Media
Neues Mitglied
Hey,
versuche momentan HTML zu erlernen. Dabei möchte ich ein Screendesign von mir umsetzen:
Startseite - EVACE Media
Bisher schauts so aus:
EVACE Media
Die Bilder im Content werden natürlich später auch noch umgesetzt, jedoch erstmal an die bestehen Probleme
Das wars erstmal
.
Hier der Quellcode:
Vielen Dank! :)
versuche momentan HTML zu erlernen. Dabei möchte ich ein Screendesign von mir umsetzen:
Startseite - EVACE Media
Bisher schauts so aus:
EVACE Media
Die Bilder im Content werden natürlich später auch noch umgesetzt, jedoch erstmal an die bestehen Probleme

- 1. Problem
- 2. Problem
- 3. Problem
Das wars erstmal

Hier der Quellcode:
Code:
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline -->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- Site information -->
<title>EVACE Media</title>
<meta name="author" content="EVACE Media">
<meta name="description" content="EVACE Media. Simply EVACZING." />
<meta name="keywords" content="evace media, webdesign, screendesign, logodesign, evace, media" />
<meta name="revisit-after" content="1 days" />
<meta name="robots" content="ALL" />
<meta name="robots" content="index, follow" />
<!-- Facebook information -->
<meta property="og:title" content="EVACE Media" />
<meta property="og:description" content="EVACE Media. Simply EVACZING." />
<!-- Stylesheet -->
<link type="text/css" rel="stylesheet" href="css/reset.css">
<link type="text/css" rel="stylesheet" media="screen" href="css/fonts.css" />
<link type="text/css" rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<div id="logo">
</div>
<div id="social">
<a href="#"><img src="img/twitter.png" alt="twitter" /></a>
<a href="#"><img src="img/facebook.png" alt="facebook" /></a>
<a href="#"><img src="img/skype.png" alt="skype" /></a>
<a href="#"><img src="img/rss.png" alt="rss" /></a>
<a href="#"><img src="img/dev.png" alt="dev" /></a>
</div>
<div id="pkt">
</div>
<div class="suchen">
</div>
</div>
<div id="contentwrapper">
<div id="content">
<div id="slider">
</div>
<div class="schatten">
</div>
<div id="beschr">
</div>
<div id="kunden">
</div>
</div>
</div>
<div id="footerwrapper">
<div id="footer">
</div>
</div>
<div id="footerwrapper2">
<div id="footer2">
© 2012 COPYRIGHT EVACE MEDIA. ALLE RECHTE VORBEHALTEN.
</div>
</div>
</body>
Code:
body {
background-image: url(../img/headbg.png);
background-repeat: repeat-x;
padding: 0;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
div.wrapper {
height: 159px;
width: 995px;
margin: auto;
}
div#logo {
background-image:url(../img/LogoBig.png);
width:149px;
height:80px;
margin: 15px 0 7px 9px;
float:left;
}
div#social {
width: 148px;
height: 18px;
float: right;
margin: 58px 0 7px 0;
}
div#pkt {
background-image:url(../img/pkt.png);
width:995px;
height:1px;
float: left;
}
#contentwrapper {
background-color: #dbdbdb;
float: left;
margin-top: 20px;
width: 100%;
}
#content {
width: 995px;
margin: auto;
}
#footerwrapper {
background-color: #333333;
float: left;
width: 100%;
height: 288px;
}
#footer {
margin: auto;
background-image: url(../img/footer.png);
width: 995px;
height:288px;
}
#footerwrapper2 {
background-color: black;
float: left;
width: 100%;
height: 59px;
bottom: 0px;
bottom:0;
}
#footer2 {
width: 995px;
margin: auto;
color: #6e6e6e;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
height: 59px;
padding-top: 23px;
bottom:0;
}
#slider{
background-image: url(../img/slider.png);
width: 996px;
height:371px;
margin-top: 23px;
}
.schatten{
background-image: url(../img/schatten.png);
width: 995px;
height: 120px;
-moz-opacity: 0.3;
opacity: 0.3;
}
.suchen {
background-image:url(../img/suchen.png);
background-color: black;
width: 144px;
height: 30px;
float:right;
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: italic;
color: white;
bottom: 14px;
}
#beschr{
background-image: url(../img/beschr.png);
width: 995px;
height:184px;
}
#kunden{
background-image: url(../img/kunden.png);
width: 995px;
height:136px;
margin: 20px 0 20px 0;
}
Vielen Dank! :)