Wednesday, 24 April 2019

Lab 5

My resume

Resume

Name: Ng Zhen Fai
Phone number: +60147456583
Contact me:
I am a 21 years old university student currently studying Computer Science in University Tun Hussein Onn Malaysia (UTHM).

Education

Year Academic Instituition
2005 SJKC Wan Hwa 1
2011 SMK Seri Keledang
2018 University Tun Hussein Onn Malaysia

Working Experience

Customer Service Officer - Grassland Express, Singapore - 2017-2018

  • Served clients with their needs accurately
  • Helped coordinate managers to gain more business opportunities
  • Increased the company's income significantly despite of the short stay

Skills

Computer skills

Microsoft productivity software (Word, Excel, and Powerpoint)

Other skills

Proficiency in various languages (Chinese, Malay, and English)


HTML Code
<html>
    <head>
        <title>My resume</title>
        
<body bgcolor="#9ECCDF">
    </body></head>

    <body>
<div id="page-wrap">
    
        <div class="vcard" id="contact-info">
        
            <h1 class="fn">
Resume</h1>
Name: Ng Zhen Fai<br />
                Phone number: <span class="tel">+60147456583</span><br />
                Contact me: <a class="email" href="mailto:falconwest@gmail.com">falconwest@gmail.com</a>
            <br />

        </div>
<div id="objective">
            
                I am a 21 years old university student currently studying Computer Science in University Tun Hussein Onn Malaysia (UTHM).
        </div>
<div class="clear">
</div>
<dl>
            <dd class="clear"></dd>
            
            <h3>
Education</h3>
<table>
<tr>
    <th>Year</th>
    <th>Academic Instituition</th>
  </tr>
<tr>
    <td>2005</td>
    <td align="center">SJKC Wan Hwa 1</td>
  </tr>
<tr>
    <td>2011</td>
    <td align="center">SMK Seri Keledang</td>
<tr>
    <td>2018</td>
    <td align="center">University Tun Hussein Onn Malaysia</td>
</tr>
</tr>
</table>
<dd>
<br />
<dt><strong>Working Experience</strong></dt>
<dd>
                <h2>
Customer Service Officer - Grassland Express, Singapore - 2017-2018</h2>
<ul>
<li>Served clients with their needs accurately</li>
<li>Helped coordinate managers to gain more business opportunities</li>
<li>Increased the company's income significantly despite of the short stay</li>
</ul>
</dd>
                <br />
  <div>
<strong>Skills</strong></div>
<h2>
Computer skills</h2>
Microsoft productivity software (Word, Excel, and Powerpoint)<br />


<h2>
Other skills</h2>
Proficiency in various languages (Chinese, Malay, and English)<br />

                </dd>

</dl>
</div>
</body>
   
</html>

Wednesday, 3 April 2019

Lab 4

<html>
<head>
<title>My First Webpage</title>
</head>
<body bgcolor="#EDDD9E">
<hl align="center">MY First Webpage</hl>
<p>Welcome to my <strong>first</strong> webpage. I am writing this page using a text editor and plain old html.</p>
<p>By learning html, I'll be able to create web pages like a pro....<br>which I am of course.</p>
Here's what I've learned:
<ul>
<li>How to use HTML tags</li>
<li>How to use HTML colours</li>
<li>How to create Lists</li>
</ul>
</body>
</html>

1. Explain about the HTML code above.
<html> Defines the root of an HTML document
<head> Defines information about the document
<title> Defines a title for the document
<body bgcolor="#EDDD9E"> 
Defines the document's body and the bgcolor                                                              attribute is used to set the background color of                                                            an HTML element
<h1 align="center">  Defines HTML headings where align="center" arranged                                             its position at the middle
<p>         Defines a paragraph
<br>
Defines a single line break
<ul>       Defines a block element used to designate an unordered list
<li>        Defines a list item in ordered or unordered lists

2. Change the given HTML code by using an ordered list tags.
<html>
<head>
<title>My First Webpage</title>
</head>
<body bgcolor="#EDDD9E">
<hl align="center">MY First Webpage</hl>
<p>Welcome to my <strong>first</strong> webpage. I am writing this page using a text editor and plain old html.</p>
<p>By learning html, I'll be able to create web pages like a pro....<br>which I am of course.</p>
Here's what I've learned:
<ol>
<li>How to use HTML tags</li>
<li>How to use HTML colours</li>
<li>How to create Lists</li>
</ol>
</body>
</html>

3. List 10 colours HEX value in HTML codes.

  • Aqua #00FFFF
  • Black #000000
  • Blue #0000FF
  • Fuchsia #FF00FF
  • Gray #808080
  • Green #008000
  • Lime #00FF00
  • Navy #000080
  • Silver #C0C0C0
  • Teal #008080

4. Provide a HTML code for definition lists.
<dl>
<dt>First</dt>
<dd>This is the first.</dd>
<dt>Second</dt>
<dd>This is the second.</dd>
</dl>