Class - Learn Web Design ( Part 1 )

Status
Not open for further replies.

ReVolver

Mega Super Ultra Cool Member
Reaction score
608
Sign me up too! :p

Edit: Are you going to assign a specific website where we need to upload our files and display our site?
 

DDRtists

ɹoʇɐɹǝpoɯ ɹǝdns
Reaction score
415
You don't really need a host unless you're going to do the PHP part. You can use save them as .html on your computer.

I'll get to lession 1 in a few.
 

undeadorcjerk

The Ulitimate TheHelper.net Lurker
Reaction score
223
You don't really need a host unless you're going to do the PHP part. You can use save them as .html on your computer.

I'll get to lession 1 in a few.

in a few turns into hours, hours turn into days, days into weeks, weeks into months. Pretty soon we will all be dead. DDRtists will be on his death bed and think "OH CRAP, i forgot to post lesson 1 for the Web Design Classroom." and then he will pass away.

THE STORY IS SO SAD *cries*
 

DDRtists

ɹoʇɐɹǝpoɯ ɹǝdns
Reaction score
415
Nah, this weekend is busy.

I WILL post it in the morning ( Pretty tired now ). My promise.
 

mase

____ ___ ____ __
Reaction score
154
Lol, the teacher is 3 days late!! :p
 

DDRtists

ɹoʇɐɹǝpoɯ ɹǝdns
Reaction score
415
Sorry.

Lession 1 - About Yourself ( Basic HTML )

A Basic HTML tag is formed between <>. For example, the font tag would be <font></font>. All HTML tags, if not self ending tags ( <lol /> )
must have a ending tag ( </lol> ).

With that down, you will be using the <table> tags the most today, as well as the <img /> tag.
To Created a Table, you music first use the table HTML tag:

Code:
<table>

After you have that down, you will need to know two more things about a table basic layout. First off, <tr> means "Table Row", and adds a row of data to the table. <td> means "Table Data", and adds data.
<td> Tags must be inside of <tr> tags for them to work properly.

Now with that down, lets create a basic Table.
The red Tags are new to this part of the lesson.
Code:
<table>[color=red]
<tr>
</tr>
</table>
[/color]

Okay, now with that down, you have a basic table. But wait, your table will not have any rows, or data on it. Lets assign some data!
To add data, we just put <td> tags inside of the <tr> call. A table can have more than one <tr> call, and it will add more rows.
Code:
<table>
<tr>[color=red]
<td>Name</td>
<td>Age</td>
<td>Hobby</td>
[/color]</tr>
</table>
In the last posted example, I've created 3 rows, "Name", "Age", and "Hobby". These are top row data that will be used to display the information about who you are. Most tables have a display row to tell you what the rows below them mean.

With that there, continue to the next part!
__________________________________

IMG Tags

The image tag is very basic, <img />

Now, that won't display your image the way you want, to do that you must tell the tag where to look. To do this, you put the src field:
Code:
<img src="" />
The SRC meaning the location on the internet where your picture is stored. This can also be locally, such as "picture.gif" if the file "picture.gif" is in the same directory as the html file.

With both of that known, try this basic lession:

Compile a small HTML page that contains information about yourself. Your page must include:

1 Table with 3 columns and at least 4 rows of data.
4 Different color fonts
1 Image

Due in 2 days, go. If you need help with basic HTML, check here:
http://www.pageresource.com/html/index2.htm
 

phyrex1an

Staff Member and irregular helper
Reaction score
447
>I think html is quite obsolete because of xhtml.
I don't.
Reason: IE (every version of it) doesn't support xhtml served as xml (as it should be served to be valid), it displays a 'download this document' menu instead of a rendered page when it encounters it. The only reason that pages that is written in xhtml does work in ie is because most people is serving the xhtml code with an invalid content-type (text/html).

So, what most people call a xhtml-validated site is actually a page written in xhtml that is parsed as invalid html (because of the xml auto close tag <.../>) by every single browser out there. It is actually even worse, if a browser would render the page as xhtml it would most likely look completely wrong. There is a few things that people doesn't know about xhtml+css that is never noticed since the page is rendered as (invalid) html anyway.

XHTML 1.0 strict = HTML 4.01 strict as xml
I'd say that if ie starts to support xhtml then we maybe can take advantage of the cool xml stuff in a few years.
With that said: I do write my pages in xhtml and serves it as text/html ^^

Um, offtopic, I can go on for hours when talking html vs xhtml. Don't make me write more :p
 
I

IKilledKEnny

Guest
Well I read it, but I understood very little.

What is a table and table row? What is table data? You didn't explain this.

Can you give an example of using local picture?

> 1 Table with 3 columns and at least 4 rows of data.
4 Different color fonts

You explained only table rows (and agian very briefly so I didn't understand what this is), so how am I supposed to know how to work with table columns?

You didn't talk about fonts, you gave just at the start example of <font></font> nor did you talk about colors.

How am I supposed to do this assignment with no knowledge about the things it is about?
 

DDRtists

ɹoʇɐɹǝpoɯ ɹǝdns
Reaction score
415
I provided everything you need. ;)

1. <td> = column, <tr> = Row
2. <font color=red> :rolleyes:
3. Table Data is whatever is inside <td>...
 
I

IKilledKEnny

Guest
I guess the fact that I'm tired and not English speaker hurt my ability to read, thanks. :p Although I still don't understand what table is. How can I test my page?
 

Pineapple

Just Smile.
Reaction score
576
a table. Open up word and you can make them they are those things made of boxes with text in them.
 

New_U.S.

ITS OVER 9000!
Reaction score
125
Kind of help but helpful

btw - here how to change fonts/colors
<FONT COLOR="red">I'm red!</FONT>
<FONT SIZE="+2">I'm a big sentence now!</FONT>
 

ReVolver

Mega Super Ultra Cool Member
Reaction score
608
HTML:
<html>
<title>My Profile</title>
<body>
<table>
<tr>
<td>Name: Efren Palacios</td>
<td>Age: 18</td>
<td>Hobby: Programming</td>
</tr>
</table>
</body>
</html>

I guess this is the first lesson.
 

sqrage

Mega Super Ultra Cool Member
Reaction score
514
HTML:
<html>
<title>My Profile</title>
<body>
<table>
<tr>
<td>Name: Efren Palacios</td>
<td>Age: 18</td>
<td>Hobby: Programming</td>
</tr>
</table>
</body>
</html>

I guess this is the first lesson.

1 Table with 3 columns and at least 4 rows of data.
4 Different color fonts
1 Image
,
 
Status
Not open for further replies.
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1
  • The Helper The Helper:
    The recipe today is Sloppy Joe Casserole - one of my faves LOL https://www.thehelper.net/threads/sloppy-joe-casserole-with-manwich.193585/
  • The Helper The Helper:
    Decided to put up a healthier type recipe to mix it up - Honey Garlic Shrimp Stir-Fry https://www.thehelper.net/threads/recipe-honey-garlic-shrimp-stir-fry.193595/

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top