now we were supposed to make an application or smth but thats besides the point what my questiong is is:
What is that <aside> element supposed to do?
He told us it was like a segment next to all the other stuff on that page but it just seems to be above everything.
AKA: wtf i dont even know.....
- Code: Select all
<html>
</head>
<body>
<header>
<aside>
<ul>
<li><a href="http://www.gamespot.com/">Gamespot</a>
<li><a href="http://www.insidegamer.nl/">Insidegamer</a>
</ul>
</aside>
<h1>Games</h1>
<nav>
<ul>
<li><a href="/android/index.html">Home</a></li>
<li><a href="/android/html/nieuws.html">News</a></li>
<li><a href="/android/html/reviews.html">Reviews</a></li>
<li><a href="/android/html/releases.html">Future Releases</a></li>
<p>
<li><a href="/android/html/mmorpg.html">MMORPG Section</a></li>
</p>
</ul>
</nav>
</header>
<section>
<h1> </h1>
<p> </p>
</section>
</body>
</html>
here is the css just incase that is needed
- Code: Select all
body {
background-color: grey;
color: white;
font-family: Helvetica;
margin: 0;
}
p {
margin: 0;
padding: 0;
border-bottom: 1px soid #666;
color: #222;
display: block;
font-size: 20px;
font-weight: bold;
padding: 10px 0;
text-decoration: none;
}
p#review {
margin: 0;
padding: 0;
border-bottom: 1px soid #666;
color: #222;
display: block;
font-size: 15px;
font-weight: bold;
padding: 10px 0;
text-decoration: none;
}
p#news {
margin: 0;
padding: 0;
border-bottom: 1px soid #666;
color: #222;
display: block;
font-size: 10px;
font-weight: bold;
padding: 10px 0;
text-decoration: none;
}
header h1 {
margin: 0;
padding: 0;
background-color: #ccc;
border-bottom: 1px soid #666;
color: #222;
display: block;
font-size: 20px;
font-weight: bold;
padding: 10px 0;
text-decoration: none;
}
header ul {
list-style: noen;
margin: 10px;
padding: 0;
}
header ul li{
list-style:none;
}
header ul li a {
background-color: #ffffff;
border: 1px solid #999999;
color: #222222;
display: block;
font-size: 17px;
font-weight: bold;
margin-bottom: -1px;
padding: 12px 10px;
text-decoration: none;
}
header h1 {
text-shadow: 0px 1px 1px #fff;
text-align: center;
}
srry if its a stupid question