Posts

Showing posts from September, 2017
Image
Laboratory 2 : Web Design Elements <!DOCTYPE html> <html> <head> <title>Trillium Media Design</title> </head><style> <body> <h1><b>Trillium Media Design</b></h1> <ul style="list-style-type:circle">   <li>Home</li>   <li>Service</li>   <li>Contact</li> </ul>     <h2>New Media and Web Design</h2>     <div style="background-color:black;color:white;padding:20px;">   <p>Trillium Media Design will bring your company's web presence to the next level. We offer a comprehensive of services.</p> </div> <h2>Meeting Your Business Needs</h2>      <p>Our expert designers are creative and eager to work with you</p>     <p>copyright &copy; 2014 Your Name Here</p> </body> <...
 Laboratory 2 : Exercise 2 First Page :  <!DOCTYPE html> <html> <head> <title>web design element</title> </head> <style> li {     list-style-type: none;     margin: 0;     padding: 0; } </style> </head> <body> <li>   <li><a href="kucing.html">First page</a></li>   <li><a href="kucing1.html">Second page</a></li> </li> <h3>A. First page</h3> <h1>We're looking for an HTML and CSS developer</h1> <img src ="kucing comel.png" style="width:760px;height:510px;"> <p>For our client, The Cat Factory, <b>we need a skilled web developer in HTML and CSS</b>. We offer a competitive salary, a bag of cat food,and toys.</p> <p>Don't wait,apply now! Our crazy team is waiting for you right meow!</p> </body> </html> ...
LABORATORY 2 : RECALL   1. The markup language code to display your name in the largest-size heading element. < h1 > NURAIN FAREHA < /h1 >  2. The markup language code for unordered list to display the days of the week. < ul >   < li > sunday < /li >   < li > monday < /li >   < li > tuesday < /li >   < li > wednesday < /li >   < li > thursday < /li >   < li > friday < /li >   < li > saturday < /li >     < /ul > 3. The markup language code for an ordered list that uses uppercase letters to order the items < ol type ="A" >   < li > spring < /li >   < li > summer < /li >   < li > fall < /li >   < li > winter < /li > < /ol > 4. Think of a favourite quote by someone you admire.  Write the XHTML code to dis...