Web layout design
Designing of web lay out is done by a few methods.Basically we have to place the areas for headers, left side bar,right sidebar,mid content and footers.We could have ability of separating areas using HTML Frames,Tables and divisions.Here,I will be discussed with you most popular method,division using HTML and CSS.
We will move step by step to each division.
outer-wrapper:-The layer that contains all the content of web including headers and Footers.
The HTML code file contains division called outerwrapper into which i have link css file called wrap.css where styles are included to the division outerwrapper.
<html> <head> <title></title> <link href="wrap.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="outerwrapper"><h2>Outer Wrapper</h2> </div> </body> </html> | @charset "utf-8"; * { margin: 0; padding: 0; } body { color: #555555; font-family: 'Trebuchet MS', Arial, Verdana, Helvetica, sans-serif; font-size: 75%; } #outerwrapper { width: 960px; background-color: #62a6e6; margin: 0 auto; line-height: 1.4em; color: #404040; margin-top:50px; border: 1px solid #31e; height:725px; } |
innerwrapper:-The layer that could be contained all the content or could not be contained all of web.This example it could not contain right side bar.
<html> <head> <title></title> <link href="wrap.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="outerwrapper"> <div id="innerwrapper"> </div> </div> </body> </html> | @charset "utf-8"; * { margin: 0; padding: 0; } body { color: #555555; font-family: 'Trebuchet MS', Arial, Verdana, Helvetica, sans-serif; font-size: 75%; } #outerwrapper { width: 960px; background-color: #62a6e6; margin: 0 auto; line-height: 1.4em; color: #404040; margin-top:50px; border: 1px solid #31e; height:725px; } #innerwrapper { float: left; margin-left:5px; width:760px; background-color: #f8eb58; height:550px; } |
content:-This layer also covers the area of innerwrapper area in this example(you can expand according to your requirements).
<html> <head> <title></title> <link href="wrap.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="outerwrapper"> <div id="innerwrapper"> <div id="content"> </div> </div> </div> </body> </html> | @charset "utf-8"; * { margin: 0; padding: 0; } body { color: #555555; font-family: 'Trebuchet MS', Arial, Verdana, Helvetica, sans-serif; font-size: 75%; } #outerwrapper { width: 960px; background-color: #62a6e6; margin: 0 auto; line-height: 1.4em; color: #404040; margin-top:50px; border: 1px solid #31e; height:725px; } #innerwrapper { float: left; margin-left:5px; width:760px; background-color: #f8eb58; height:550px; } #content { float: left; width: 760px; height:550px; background-color: #d8e8f6; border: 1px solid #31e; } |
Head:-Place where headers of web contains.
<html> <head> <title></title> <link href="wrap.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="outerwrapper"> <div id="head"> </div> <div id="innerwrapper"> <div id="content"> </div> </div> </div> </body> </html> | @charset "utf-8"; * { margin: 0; padding: 0; } body { color: #555555; font-family: 'Trebuchet MS', Arial, Verdana, Helvetica, sans-serif; font-size: 75%; } #outerwrapper { width: 960px; background-color: #62a6e6; margin: 0 auto; line-height: 1.4em; color: #404040; margin-top:50px; border: 1px solid #31e; height:725px; } #innerwrapper { float: left; margin-left:5px; width:760px; background-color: #f8eb58; height:550px; } #content { float: left; width: 760px; height:550px; background-color: #d8e8f6; border: 1px solid #31e; } #head { height: 145px; width: 960px; background-color: #76cb7e; } |
leftsidebar:-Place where left menu is placed
<html> <head> <title></title> <link href="wrap.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="outerwrapper"> <div id="head"> </div> <div id="innerwrapper"> <div id="content"> <div id="leftsidebar"> </div> </div> </div> </div> </body> </html> | @charset "utf-8"; * { margin: 0; padding: 0; } body { color: #555555; font-family: 'Trebuchet MS', Arial, Verdana, Helvetica, sans-serif; font-size: 75%; } #outerwrapper { width: 960px; background-color: #62a6e6; margin: 0 auto; line-height: 1.4em; color: #404040; margin-top:50px; border: 1px solid #31e; height:725px; } #innerwrapper { float: left; margin-left:5px; width:760px; background-color: #f8eb58; height:550px; } #content { float: left; width: 760px; height:550px; background-color: #d8e8f6; border: 1px solid #31e; } #head { height: 145px; width: 960px; background-color: #76cb7e; } #leftsidebar { margin-right: 10px; width: 180px; height:550px; float: left; background-color: #ed9b7b; } |
<html> <head> <title></title> <link href="wrap.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="outerwrapper"> <div id="head"> </div> <div id="innerwrapper"> <div id="content"> <div id="leftsidebar"> </div> <div id="contentmid"> </div> </div> </div> </div> </body> </html> | @charset "utf-8"; * { margin: 0; padding: 0; } body { color: #555555; font-family: 'Trebuchet MS', Arial, Verdana, Helvetica, sans-serif; font-size: 75%; } #outerwrapper { width: 960px; background-color: #62a6e6; margin: 0 auto; line-height: 1.4em; color: #404040; margin-top:50px; border: 1px solid #31e; height:725px; } #innerwrapper { float: left; margin-left:5px; width:760px; background-color: #f8eb58; height:550px; } #content { float: left; width: 760px; height:550px; background-color: #d8e8f6; border: 1px solid #31e; } #head { height: 145px; width: 960px; background-color: #76cb7e; } #leftsidebar { margin-right: 10px; width: 180px; height:550px; float: left; background-color: #ed9b7b; } #contentmid { float: right; margin-right: 10px; width: 550px; height:550px; background-color: #f2e680; border: 1px solid #31e; } |
rightsidebar:-content of right side is included
<html> <head> <title></title> <link href="wrap.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="outerwrapper"> <div id="head"> </div> <div id="innerwrapper"> <div id="content"> <div id="leftsidebar"> </div> <div id="contentmid"> </div> </div> </div> <div id="rightsidebar"> </div> </div> </body> </html> | @charset "utf-8"; * { margin: 0; padding: 0; } body { color: #555555; font-family: 'Trebuchet MS', Arial, Verdana, Helvetica, sans-serif; font-size: 75%; } #outerwrapper { width: 960px; background-color: #62a6e6; margin: 0 auto; line-height: 1.4em; color: #404040; margin-top:50px; border: 1px solid #31e; height:725px; } #innerwrapper { float: left; margin-left:5px; width:760px; background-color: #f8eb58; height:550px; } #content { float: left; width: 760px; height:550px; background-color: #d8e8f6; border: 1px solid #31e; } #head { height: 145px; width: 960px; background-color: #76cb7e; } #leftsidebar { margin-right: 10px; width: 180px; height:550px; float: left; background-color: #ed9b7b; } #contentmid { float: right; margin-right: 10px; width: 550px; height:550px; background-color: #f2e680; border: 1px solid #31e; } #rightsidebar { float: right; margin-right: 5px; width: 180px; height:550px; background-color: #ed9b7b; } |
footer:-Where footer content is placed
<html> <head> <title></title> <link href="wrap.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="outerwrapper"> <div id="head"> </div> <div id="innerwrapper"> <div id="content"> <div id="leftsidebar"> </div> <div id="contentmid"> </div> </div> </div> <div id="rightsidebar"> </div> <div id="footer"> </div> </div> </body> </html> | @charset "utf-8"; * { margin: 0; padding: 0; } body { color: #555555; font-family: 'Trebuchet MS', Arial, Verdana, Helvetica, sans-serif; font-size: 75%; } #outerwrapper { width: 960px; background-color: #62a6e6; margin: 0 auto; line-height: 1.4em; color: #404040; margin-top:50px; border: 1px solid #31e; height:725px; } #innerwrapper { float: left; margin-left:5px; width:760px; background-color: #f8eb58; height:550px; } #content { float: left; width: 760px; height:550px; background-color: #d8e8f6; border: 1px solid #31e; } #head { height: 145px; width: 960px; background-color: #76cb7e; } #leftsidebar { margin-right: 10px; width: 180px; height:550px; float: left; background-color: #ed9b7b; } #contentmid { float: right; margin-right: 10px; width: 550px; height:550px; background-color: #f2e680; border: 1px solid #31e; } #rightsidebar { float: right; margin-right: 5px; width: 180px; height:550px; background-color: #ed9b7b; } #footer { clear: both; width: 960px; color: #777; height: 25px; font-size: 0.8em; font-weight: bold; margin: 0px auto; background-color: #130703; } |
navigation:-Where main menu items are placed
<html> <head> <title></title> <link href="wrap.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="outerwrapper"> <div id="head"> </div> <div id="navigation"> </div> <div id="innerwrapper"> <div id="content"> <div id="leftsidebar"> </div> <div id="contentmid"> </div> </div> </div> <div id="rightsidebar"> </div> <div id="footer"> </div> </div> </body> </html> | @charset "utf-8"; * { margin: 0; padding: 0; } body { color: #555555; font-family: 'Trebuchet MS', Arial, Verdana, Helvetica, sans-serif; font-size: 75%; } #outerwrapper { width: 960px; background-color: #62a6e6; margin: 0 auto; line-height: 1.4em; color: #404040; margin-top:50px; border: 1px solid #31e; height:780px; } #innerwrapper { float: left; margin-left:5px; width:760px; background-color: #f8eb58; height:550px; } #content { float: left; width: 760px; height:550px; background-color: #d8e8f6; border: 1px solid #31e; } #head { height: 145px; width: 960px; background-color: #76cb7e; } #leftsidebar { margin-right: 10px; width: 180px; height:550px; float: left; background-color: #ed9b7b; } #contentmid { float: right; margin-right: 10px; width: 550px; height:550px; background-color: #f2e680; border: 1px solid #31e; } #rightsidebar { float: right; margin-right: 5px; width: 180px; height:550px; background-color: #ed9b7b; } #footer { clear: both; width: 960px; color: #777; height: 25px; font-size: 0.8em; font-weight: bold; margin: 0px auto; background-color: #130703; } #navigation { width: 960px; background-color: #f1caec; height: 31px; border-top: #023634 solid 1px; margin-bottom: 20px;} |
Excellent way of expressing your ideas with a clear vision, Keep updating.
ReplyDeleteselenium Classes in chennai
selenium Training in Chennai
selenium Testing Training
iOS Course Chennai
mobile application development training in chennai
php course
I am happy to find this post Very useful for me, as it contains lot of information
ReplyDeleteGuest posting sites
Education
The blog is well written and Thanks for your information. Java is one of the widely accepted language. The reason is it's features and it is platform independent.
ReplyDeleteJAVA Training Coimbatore
JAVA Coaching Centers in Coimbatore
Best JAVA Training Institute in Coimbatore
JAVA Certification Course in Coimbatore
JAVA Training Institute in Coimbatore
I believe that your blog will surely help the readers who are really in need of this vital piece of information. Waiting for your updates.
ReplyDeleteTOEFL Classes in Chennai OMR
TOEFL Coaching Centres at Kandanchavadi
TOEFL Coaching Classes in Siruseri Chennai
TOEFL Coaching Classes near me
TOEFL classes in Moulivakkam
Best TOEFL Training Institute at Porur
IELTS Classes near Chennai Tambaram
Nice post. By reading your blog, i get inspired and this provides some useful information. Thank you for posting.
ReplyDeletePhotoshop Classes in Chennai
Photoshop Course in Chennai
Photoshop Training in Chennai
Photo Editing Courses in Chennai
Photoshop Training Institute in Chennai
Best Place to Learn Photoshop in Chennai
Thank you for sharing this useful information with us. Nice work
ReplyDeleteIonic Training in Chennai | Ionic 2 Course | Ionic Training Course | Ionic Training in Adyar | Ionic Training in Velachery | Ionic Training in Tambaram
Very informative article post. Really looking forward to read more. Will read on…
ReplyDeleteData Science Training in Velachery
Data Science Training in Chennai Velachery
Data Science Training in Aminjikarai
Data Science Training in Vadapalani
Data Science Training in Chennai
Amazing Post. I am very much impressed with your choice of words. The content showcases your in-depth knowledge in this subject. Thanks for sharing.
ReplyDeleteSocial Media Marketing Courses in Chennai
Social Media Marketing Training in Chennai
Social Media Training in Chennai
Social Media Marketing Training
Social Media Marketing Courses
Social Media Training
Social Media Marketing Training
Social Media Courses
ReplyDeleteThanks for sharing the fantabulous post. It gives immense pleasure to read your article. Your post is very thought provoking.
Pega training institutes
Pega training courses
Pega administrator training
Pega testing training
Pega software training
Pega software course
Pega training in Velachery
Excellent.. Very Clear Explanation.. Much appreciated
ReplyDeleteRegards,
Machine learning Course
Best software Training Institutes in Chennai-Softlogic Institute ( SLA) .Softlogic training Center provides certification to bright IT aspirants through effective theoretical and practical coaching, online training, lab sessions and hands –on training in line with the requirements of the best Employers in the IT fraternity. Our superlative syllabus blends well with the real time exposure given to Students/ professionals; and this makes us the leading CCNA Training Institute in Chennai call now:8608700340
ReplyDeleteRead more: https://www.postallads4free.com/training_education_services-ad645444.html
I feel really happy to have seen your webpage and look forward to so many more entertaining times reading here. Thanks once more for all the details.
Data science Course Training in Chennai |Best Data Science Training Institute in Chennai
RPA Course Training in Chennai |Best RPA Training Institute in Chennai
AWS Course Training in Chennai |Best AWS Training Institute in Chennai
Devops Course Training in Chennai |Best Devops Training Institute in Chennai
Selenium Course Training in Chennai |Best Selenium Training Institute in Chennai
Java Course Training in Chennai | Best Java Training Institute in Chennai
The blog you shared is very good. I expect more information from you like this blog. Thankyou.
ReplyDeleteSelenium Training in chennai | Selenium Training in annanagar | Selenium Training in omr | Selenium Training in porur | Selenium Training in tambaram | Selenium Training in velachery
Smm panel
ReplyDeleteSMM PANEL
iş ilanları
İNSTAGRAM TAKİPÇİ SATIN AL
hırdavatçı burada
BEYAZESYATEKNİKSERVİSİ.COM.TR
servis
tiktok hile
Good content. You write beautiful things.
ReplyDeletevbet
hacklink
sportsbet
taksi
mrbahis
korsan taksi
vbet
mrbahis
sportsbet
Good text Write good content success. Thank you
ReplyDeletebonus veren siteler
betmatik
betpark
slot siteleri
kibris bahis siteleri
kralbet
tipobet
mobil ödeme bahis
شركة تنظيف مجالس بالدمام
ReplyDeleteشركة تنظيف مجالس
çorum
ReplyDeleteantep
ısparta
hatay
mersin
GMYQ
zonguldak
ReplyDeleteısparta
diyarbakır
ığdır
kıbrıs
XR1U
salt likit
ReplyDeletesalt likit
dr mood likit
big boss likit
dl likit
dark likit
ROUB
bitlis
ReplyDeletesakarya
van
tunceli
ankara
Aİ37P
görüntülü show
ReplyDeleteücretlishow
İND7
ankara parça eşya taşıma
ReplyDeletetakipçi satın al
antalya rent a car
antalya rent a car
ankara parça eşya taşıma
14D
1E965
ReplyDeleteOsmaniye Şehirler Arası Nakliyat
Hatay Şehir İçi Nakliyat
Ünye Televizyon Tamircisi
Nevşehir Evden Eve Nakliyat
Maraş Lojistik
Kars Parça Eşya Taşıma
Konya Parça Eşya Taşıma
Antalya Parça Eşya Taşıma
Bingöl Lojistik
AF617
ReplyDeletesustanon for sale
masteron for sale
Silivri Boya Ustası
Ankara Evden Eve Nakliyat
Tokat Evden Eve Nakliyat
Kripto Para Borsaları
buy peptides
Adana Evden Eve Nakliyat
order pharmacy steroids
241C1
ReplyDeleteKastamonu Evden Eve Nakliyat
Kilis Parça Eşya Taşıma
Bingöl Parça Eşya Taşıma
Maraş Parça Eşya Taşıma
Karaman Parça Eşya Taşıma
Yobit Güvenilir mi
Sincan Parke Ustası
Tokat Parça Eşya Taşıma
Pursaklar Boya Ustası
40A57
ReplyDeleteYobit Güvenilir mi
Trabzon Şehir İçi Nakliyat
Şırnak Parça Eşya Taşıma
Aksaray Parça Eşya Taşıma
Bartın Şehir İçi Nakliyat
Burdur Parça Eşya Taşıma
Uşak Parça Eşya Taşıma
Kilis Parça Eşya Taşıma
Van Evden Eve Nakliyat
E4267
ReplyDeleteİzmir Evden Eve Nakliyat
Çerkezköy Çamaşır Makinesi Tamircisi
Sinop Şehirler Arası Nakliyat
Samsun Parça Eşya Taşıma
Antalya Parça Eşya Taşıma
Muş Lojistik
Silivri Çatı Ustası
Sonm Coin Hangi Borsada
Çorum Evden Eve Nakliyat
1A59A
ReplyDeleteKarabük Evden Eve Nakliyat
Manisa Şehirler Arası Nakliyat
Edirne Evden Eve Nakliyat
Bolu Parça Eşya Taşıma
Ardahan Şehirler Arası Nakliyat
Altındağ Fayans Ustası
Çorlu Lojistik
Çorum Şehirler Arası Nakliyat
Çankırı Evden Eve Nakliyat
9B33B
ReplyDeleteMalatya Evden Eve Nakliyat
İstanbul Evden Eve Nakliyat
Balıkesir Evden Eve Nakliyat
parabolan for sale
Çerkezköy Boya Ustası
order testosterone propionat
Kars Evden Eve Nakliyat
Silivri Duşa Kabin Tamiri
Adana Evden Eve Nakliyat
2695E
ReplyDelete%20 komisyon indirimi
6844E
ReplyDeletekütahya rastgele sohbet odaları
şırnak telefonda görüntülü sohbet
Karabük Seslı Sohbet Sıtelerı
Ankara Sesli Sohbet Odası
muhabbet sohbet
Ağrı Kadınlarla Rastgele Sohbet
canlı görüntülü sohbet uygulamaları
kars sesli sohbet odası
mobil sohbet bedava
5641E
ReplyDeleteFacebook Sayfa Beğeni Satın Al
Onlyfans Takipçi Satın Al
Floki Coin Hangi Borsada
Twitch İzlenme Hilesi
Arg Coin Hangi Borsada
Bitcoin Kazanma
Bitcoin Çıkarma
Keep Coin Hangi Borsada
Görüntülü Sohbet
ReplyDeleteشركة تنظيف بالجبيل
تنظيف بالجبيل
4C41D
ReplyDeletegalagames
avax
ellipal
dexscreener
phantom
aave
shiba
quickswap
pancakeswap