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.

Friday, February 21

Tutorial 7

mystyle.css

body {
    background-color:#FFFF66;
    padding-left:15em;
          }

a:link { font-family:arial; color: white;}
a:visited { font-family:arial; color: red;}
a:hover { font-family:arial; color: blue;}

ul.links{
    list-style-type:none; //value=none/circle/square
    margin:0
    padding:0;
    width:10em;
    position:absolute;
    top:3em;
    left:0;
             }

ul.links li {
    margin:10px;
    background:#FF9900;
    border-right:1em solid black;
                }

h1 { font-family: broadway; color:purple; }

.font { font-family:arial; color:purple; }

EM { font-family:arial}


Tutorial 7.html

<html>
    <head>
        <LINK REL = "stylesheet"  TYPE = "text/css"  HREF = "mystyle.css"
    </head>
    <body>
        <ul class="links">
                <li><a href="   "> Main Page </a></li>
                <li><a href="   "> My Biodata </a></li>
                <li><a href="   "> My Tutorial </a></li>
                <li><a href="   "> My Assignment </a></li>
        </ul>
       
        <h1> My first styled page </h1>
   
        <span class="font">
        Welcome to my page! <br> <br>
        It lacks images, but at least it has style. <br>
        And it has links, even if they don't go anywhere... <br><br>
        There should be more here, but I haven't create them yet.
        </span>
        <br><br><hr><br>
        <EM>
        <i>Published 17 February 2014 <br> by myself. </i>
        <EM>
       
    </body>
</html>

No comments:

Post a Comment