Yaqian's Blog

October 13, 2010

Another progress after hard working

Filed under: Network Media 2010 — Tags: , , — admin @ 7:26 pm

As our group discussed before, we will set a image of ipad as our home page for our hypertext essay. A list may be involved in our homepage. Thus, I look deep into list function in HTML today, and found some very useful information.

There are basically two types of list for easy use purpose, ordered lists and unordered lists

Ordered lists <ol></ol> obvious means lists that are in order, on contrast, unordered lists <ul></ul> means lists that are not in order. An ordered list will be displayed with number ahead, and unordered list will be displayed with pullet point ahead.

Here is the example of coding and list,

<html>
<body>

<b><h1>My favourite fruits(Unordered):</h1>
<ul>
 <li> Watermelon </li>
 <li> Banana </li>
 <li> Orange </li>
</ul>

<h1>My favourite fruits (In ordered):</h1>
<ol>
 <li> Watermelon </li>
 <li> Banana </li>
 <li> Orange </li>
</ol>
</body>
</html>


The code above will look like this:


My favourite fruits(Unordered):
  • Watermelon
  • Banana
  • Orange
My favourite fruits (In ordered):
  1. Watermelon
  2. Banana
  3. Orange


But I found another cool list which called definition lists, you can actually put some description on your list, it starts with tag <dl> to tell HTML that I am going to make a definition lists, then follow with tag <dt> which means to defines a list, after that, use tag <dd> to describe the item you  list previously.

Here is a small example,
<dl>
<h1>My favourite fruits</h1>
<dt> Watermelon </dt>
<dd> — I eat one to two times a month</dd>
<dt> Banana </dt>
<dd> — I eat twice a month</dd>
<dt> Orange </dt>
<dd> — I eat five times a month</dd>
</dl>


The code above will look like this:

My favourite fruits
Watermelon
— I eat one to two times a month
Banana
— I eat twice a month
Orange
— I eat five times a month

Hey guys, please try it yourself, you won’t learn it until you actually put it in practice. If I can do it, so do you. LOL

October 12, 2010

The 1st Motification.

Filed under: Network Media 2010 — Tags: — admin @ 4:47 pm

As what i mentioned before about our Hypertext Essay, we prepare to use an iPad Frame as our Website’s backgroud. I just received my group member’s email, which said because of some problem of copyright, we have to change our backgroud. Well, a new turn to design our Web style. After discussion, we figured out it, the new backgroud is a diary. As we know, the diary page involves some tags like ” Date” ” To Do” “Weather”, yes, these tags will be our new click places for links. We are going to change every tage to our correspond content, like ” Introduction” ” Comments” ” Links”, umm, i hope it works. Indeed, this assisgnment is more harder than we imagined before. I prepared to welcome various problems we will meet soon. In conclusion, copyright is a crucial points people always ignore. To be frank, im still on the way to get used thinking about this point. Neverthelss, i predict it will become a constant hatit gradually, owing to it is neccessary for every task.

September 29, 2010

Helpful Examples!

Filed under: Network Media 2010 — Tags: — admin @ 11:13 pm

I just read some introduction about Hypertext Essay. As what i mentioned before, my fisrt step is know it, im doing this step now. Moreover,i reviewed some lecture notes in last semester.

“Hypertext is writing on the web that incorporates the use of hyperlinks. This is its main feature and what makes it different from regular writing. While we read most book text or papertext from top to bottom, left to right, front to back, we don’t necessarily read hypertext in the same linear way. Hypertext is read differently by each reader, and therefore each hypertext document continues to change. The reader is as much a part of the writing as the writer in making meaning. Maybe I can explain what I mean with the following analogy.”
I quoted this paragraphy from here.

This one is really helpful, it is a specifical introduction of Hypertext Essay, moreover, it is linked by too many key words. I took a glance of Sethkeen’s examples, the most impressive place is the design of web page, except for Hypertext Essays, how to build a wonderful page to show it is same important. Umm..i have a clear direction now,
1. web design 2. content.

Powered by WordPress