Welcome! =D

Welcome to this page, KPOP World In Me.

Basically, this page is for my college purpose.

Last year (2013), I was required to create a blog and to talk about the things I like. Therefore, I promoted South Korea, and that was my topic for the assignment. To view them, checkout the sidebar, under the "My Previous Project" section.

As of this year (2014), for IT-subject, I was asked to create a blog again. So, I thought that I might as well use this existing blog and fortunately, my lecturer allowed me to do so.

In summary, all I want to say is that this is NOT a personal blog. Although the website is called "KPOP World", but it will contain non-KPOP related topics...

That is all from me. Happy reading~~ ^^

P/S - I found out that you need to refresh the page whenever you first open the page. This is to get the correct fonts that I've set for this page.

Monday, February 17

Tutorial 6

There's no Tutorial 5 since there is no class on Monday (3/2/2014) - Lab C

Tutorial 6 - Question 1 - Frame

Header.html
<html>
    <body style="background:url(images.jpg)">
   
    </body>
   
</html>
images.jpg












Sidebar.html
<html>
    <body bgcolor="pink">

    <b><u><font face="arial"> SIDEBAR </font></u></b><br><br>
    <font face="calibri" size="4"><b><a href="Tutorial 4.html" target="content"> Tutorial 4 </a></b></font>
<br><br>
    <font face="calibri" size="4"><b><a href="https://www.ucsiuniversity.edu.my/" target="content"> UCSI </a></b></font>
<br><br>
   
    </body>
</html>

Tutorial 4.html
<html>
    <head>
        <title> Tutorial 4</title>
    </head>

    <body>

    <center>
    <table border="1">
    <tr>
             <th>  </th>
             <th> 8.00-9.30 </th>
             <th> 9.30-11.00 </th>
             <th> 11.00-12.30 </th>
             <th> 12.30-2.00 </th>
                <th> 2.00-3.30 </th>
    </tr>
    <tr>
              <td><b> Monday </td></b>
              <td> </td>
              <td> CC106 (Lab C) </td>
              <td> </td>
              <td> SM113 (C203) </td>
              <td> BB108 (C207) </td>
    </tr>
    <tr>
              <td><b> Tuesday </td></b>
              <td> LL101 (C207) </td>
              <td> SM113 (Newsroom) </td>
              <td> BB108 (CG03) </td>
              <td>  </td>
              <td>  </td>
    </tr>
    <tr>
               <td><b> Wednesday </td></b>
               <td>  </td>
                <td>  </td>
               <td>  </td>
               <td> SM113 (Blended Learning) </td>
               <td> SM112 (C413) </td>
    </tr>
    <tr>
                <td><b> Thursday </td></b>
                <td> LL101 (C209) </td>
                <td>  </td>
                <td> SM112 (C401) </td>
                <td> CC106 (C409) </td>
                <td>  </td>
    </tr>
    <tr>
                 <td><b> Friday </td><b>
                 <td> CC106 (C301) </td>
                 <td>  </td>
                  <td>  </td>
                 <td>  </td>
                  <td>  </td>
    </tr>
    </table>
    </center> <br>

    <center><b>
    Time Table (Jan - Apr 2014)
    </center></b> <br>

    <center><a href="Tutorial 3.html">
    Click here for Tutorial 3 </a></center> <br>

    </body>
   
</html>

Content.html
<html>
    <body style="background-color:skyblue">
   
    <font face= "arial" size="4">Click links from the sidebar to view contents </font>
   
    </body>
</html>

Frame.html
<html>
    <frameset>
    <frameset rows="30%, *" frameborder="1">
        <frame noresize="noresize" src="Header.html" >
    <frameset cols="20%,*">
        <frame name="nav" noresize="noresize" src="Sidebar.html">
        <frame name = "content" noresize="noresize" src="Content.html">                       
    </frameset>

    </body>
</html>

----------------------------------------------------------------------------------------------
Question 2 - Form

<html>
    <body>
    <form action="send.php" method="post">
        <b>What kind of car would you like to buy? </b><br> <br>
    &nbsp&nbsp&nbsp&nbsp&nbsp   
        <input type="radio" name="user_vehicle" value="Proton" checked> Proton &nbsp   
        <input type="radio" name="user_vehicle" value="Honda"> Honda &nbsp
        <input type="radio" name="user_vehicle" value="Ferarri"> Ferrari &nbsp
        <input type="radio" name="user_vehicle" value="Ford"> Ford &nbsp
    <br><br>
        <b>What colour do you want on you car? </b><br><br>
    &nbsp&nbsp&nbsp&nbsp&nbsp
        <select>
        <option value="White"> White </option>
        <option value="Red"> Red</option>
        <option value="Black" selected> Black </option>
                     <option value="Blue"> Blue </option>
        </select>
        Other: <input type="text" name="user_other"/>
    <br><br>
        <b>Enter other recommendation of your preferred car: </b> <br>
    &nbsp&nbsp&nbsp&nbsp&nbsp
        <textarea name="Other" rows="5" cols="50"> </textarea>
    <br><br>
        <b>Tell us how to get in touch with you: </b><br><br>
    <table>
    <tr>
    <td>&nbsp&nbsp&nbsp&nbsp&nbsp Name </td>
     <td><input type="text" name="user_name"/> </td></tr>
    <tr>
    <td>&nbsp&nbsp&nbsp&nbsp&nbsp E-mail </td>
    <td><input type="text" name="user_email"/> </td></tr>
    <tr>
    <td>&nbsp&nbsp&nbsp&nbsp&nbsp Tel </td>
    <td><input type="text" name="user_tel"/> </td></tr>
    <tr>
    <td> &nbsp&nbsp&nbsp&nbsp&nbsp FAX </td>
    <td><input type="ext" name="user_fax"/> </td></tr>
    </table><br>

    &nbsp&nbsp&nbsp&nbsp&nbsp
    <input type="checkbox"> Please contact me as soon as possible regarding this matter <br>   
    <br>
    <input type="submit" value="Send" />
    <input type="reset" value="Clear" />
   
     </form>
    </body>
</html>

No comments:

Post a Comment