Skip to main content

Posts

Showing posts with the label CSS english version

Combining all material

Combining all material  In this post you are invited to the specifics to understand the make pieces of a website, from the Header, Content, Menu, Right Menu, footers in a discussion which I have peeled one by one about the function of each command CSS.  In the discussion this time you will combine the start of the header to footer for web pages into a single unit.  Okay just give me my own HTML file join: <html> <head> <title>Creating a Web Layout</title> <link href="style.css" rel="stylesheet" type="text/css" media="all" /> </head> <body> <div id="container"> <div id="header"> </div> <div id="menu"> <a href="index.html">HOME</a> <a href="produk.html">PRODUK</a> <a href="artikel.html">ARTIKEL</a> <a href="member.html">MEMBER</a> <a href="testimoni...

Editing Footer

After you create a layout, navigation, content and column right, now you need to edit footer.  You must first create a folder named  Chapter V Edit Footer  , and in that folder create folder also images, because you need images for the footer. Creating an HTML File Footer Type the following HTML code in notepad ++ <html> <head> <title>Creating a Web Layout</title> <link href="style.css" rel="stylesheet" type="text/css" media="all" /> </head> <body> <div id="container">         <div id="footer">           <p id="bottom">                   <a href="#">HOME</a>                    <a href="#">PRODUK</a>                 ...

Editing Column Right

Previously you had a folder with the name created  CHAPTER IV Edit Colom Right  and therein you create another folder named images, then your copy of the image file which I have included in  MATERIAL PRACTICE CSS  into the images folder. As there are 7 file image file: Create File HTML Column Right Then you open the software Notepad ++ or another suitable both you and your tastes write html code below: <html> <head> <title>Creating a Web Layout</title> <link href="style.css" rel="stylesheet" type="text/css" media="all" /> </head> <body> <div id="container"> <div id="content"> <p>&nbsp;</p> </div> <div id="right"> <h2 class="member">Member Login</h2> <form name="memberLogin" action="#" method="post"> <input type="text" name="name" class...