Всем привет с вами lexx821. Хотел бы с вами поделиться как я создаю веб сайты...
Короче вот простой пример веб дизайна:
Код:
<!DOCTYPE html> <html> <head> <style> * { padding:0; margin:0; } body { background-color:#000; } #header { height:150px; background-color:red;} #footer { height:50px; } #content { margin-left:auto; margin-right:auto; margin-top:40px; margin-bottom:100px; width:80%; min-height:800px; background-color:#fff; color:#000; border:1px solid #aaa; box-shadow:0px 0px 5px #eee; } .clearfix:after { content: ""; clear: both; display: table; } .left { float:left; } .right { float:right; } nav { padding:0; margin:0; } #menu { list-style-type:none; margin:0; padding:0; overflow:hidden; } #menu li { float:left; } #menu a.active { background-color:black; color:white; } li a { font-size:20px; display:block; text-align:center; padding:20px; text-decoration:none; } </style> </head> <body> <div id="content"> <div id="header"></div> <nav> <ul id="menu"> <li><a href="#" class="active">Меню 1</a></li> <li><a href="#">Меню 2</a></li> </ul> </nav> <div class="clearfix" style="min-height:200px;"> <div style="width:200px;" class="left">Колонка 1</div> <div style="width:200px;" class="left">Колонка 2</div> </div> <div id="footer"></div> </div> </body> </html>