Class - Learn Web Design ( Part 1 )

Status
Not open for further replies.

hobo218

Meh
Reaction score
75
Ok, here's mine.
I pretty much just did the basics of you were looking instead of putting other things in since I was somewhat rushed for time.
Also, I considered black a color and I have my image as the background...
:p

Oh, and next time don't make us do so many different colored fonts. Makes the page look kinda ugly...
;)

[EDIT]
Just did a slight update to my page. The updated version is now attached.
 

New_U.S.

ITS OVER 9000!
Reaction score
125
Here my version, it doesn't follow your rules to well, but it uses the same ideas. It a bad 'About me' For Jigsaw :D
 

Attachments

  • SAWhtml.htm
    856 bytes · Views: 336

pheonixashes

Those who misplace trust in gods learn their fate.
Reaction score
65
Ok, here are a couple things I don't exactly understand:

I get how to fill in the rows of the data with the tables, but how do you fill in the columns? I know you denote them with <td>, but how do you format it so you know which column matches with which row, etc?

If I just type text, it will show up as text right? Nevermind, I got it.

And finally, apparently the table doesn't show too well...

EDIT: Nevermind, I viewed the online lessons and I figured it out.
 

DDRtists

ɹoʇɐɹǝpoɯ ɹǝdns
Reaction score
415
Guys, I'll help you out later.

My girlfriend of 1 1/2 years just broke up with me, so I'm really not in a stable mood to help with coding. I'm sorry.

The class will continue, but I will be a bit slow on replsy. :(
 

Mr Zero

Junior Regular (Got the T-shirt)
Reaction score
64
Hmm... I dont get it with the table.
Row is sideways while columns goes downwards, right?
While you are write it like it was backwards...

Anyway:
HTML:
<table>
<tr>
<td>Color</td>
<td>Name</td>
<td>Hex Code</td>
</tr>
<tr>
<td><img src="http://img341.imageshack.us/img341/6044/unavngivetgr6.png"/></td>
<td><FONT COLOR="#FF0000">Red</FONT></td>
<td>#FF0000</td>
</tr>
<tr>
<td><img src="http://img150.imageshack.us/img150/1342/unavngivetwa5.png"/></td>
<td><FONT COLOR="#0000FF">Blue</FONT></td>
<td>#0000FF</td>
</tr>
<tr>
<td><img src="http://img262.imageshack.us/img262/3347/unavngivetgu1.png"/></td>
<td><FONT COLOR="#800080">Purple</FONT></td>
<td>#800080</td>
</tr>
<tr>
<td><img src="http://img295.imageshack.us/img295/3423/unavngivethd4.png"/></td>
<td><FONT COLOR="#00FF00">Green</FONT></td>
<td>#00FF00</td>
</tr>
</table>

Simple :eek:...
 
I

IKilledKEnny

Guest
PHP:
<table>
<tr>
<td>What is you name?</td>
<td>Favorite color?</td>
<td>Hobbies?</td>
</tr>
<tr>
<td><img src="http://www.adamtierney.com/CG/blah.gif"/></td>
<td><FONT COLOR="#FFcc00">Blizzard's Yellow</FONT></td>
</tr>
<tr>
<td><img src="http://img150.imageshack.us/img150/1342/unavngivetwa5.png"/></td>
<td><FONT COLOR="#0000FF">Blue</FONT></td>
<td>#0000FF</td>
</tr>
<tr>
<td><img src="http://blah.de/bilder/blah-postkarte-vorderseite.jpg"/></td>
<td><FONT COLOR="#0cfcba">Random color</FONT></td>
</tr>
<tr>
<td><img src="http://www.explodingdog.com/dumbpict51/blah.gif"/></td>
<td><FONT COLOR="#55FF22">Variation of green</FONT></td>
</tr>
</table>

My try, hopes it ok.
 

DDRtists

ɹoʇɐɹǝpoɯ ɹǝdns
Reaction score
415
Meh, all is good. :p

By they way, the next lesson will be much harder, I just wanted to make sure you all had basic ideas on how HTML is formed. :p
 

phyrex1an

Staff Member and irregular helper
Reaction score
447
You forgot to mention that the alt attribute is required in the img tag, also if you are teaching xhtml (and since you are using the self close tag I suppose you do) then all tags should be in lower case, font instead of FONT. Btw, while the font tag maybe have a educational purpose I rather not see it in any new web pages. It's already deprecated and if you want to take advantage of the next generation of (x)html standards then you better forget it.

Even if this is a very basic lesion I see no reason why these fundamentals should be left out.
 

phyrex1an

Staff Member and irregular helper
Reaction score
447
>why is the alt attribute required?
Because the most recent (x)html standards says so.

>The page is not screwed up in any way...
Most browsers handle errors like this pretty well. However, it's not defined in any standars how browsers should handle errors (the html recommendation is that browsers should 'handle them as good as possibly') so it's not the browsers error is they replace all images with missing alt tag with pictures of the development team of the browser.
When the choose stands between writing correct markup (with well defined rules how browser should display it) and incorrect markup (browsers can deal with the markup as they want) the choose is pretty easy imo.

Also, the alt tag has the nice behavior that if the browser can't load the image (maybe it's a text browser or the user just uses a slow connection) it will display the alt text instead thus giving the user an idea on what they are missing :p
 
U

Ur-Quan

Guest
I got my page tried and ready:
Code:
<table>
<head>
<title>Ur-Quan</title>
</head>
<table border="1">
<tr>
<td>Name: </td>
<td>Some</td>
<td>One</td>
</tr>
<tr>
<td>Age: </td>
<td>Some</td>
<td>Thing</td>
</tr>
<tr>
<td>Color: </td>
<td><FONT COLOR="#00FF00">Green</FONT></td>
<td> </td>
</tr>
<tr>
<td>Professons: </td>
<td>Learning</td>
<td> XHTML </td>
</tr>
<tr>
<td>Picture: </td>
<td> </td>
</tr>
<tr>
<td><img src="http://www.thehelper.net/forums/customavatars/avatar13287_1.gif" /></td>
</tr>
</table>


<Hint>
You can just go view google page in the source,
remove its code,
add yours,
press apply changes
and you have your code tested
</hint>
 

pheonixashes

Those who misplace trust in gods learn their fate.
Reaction score
65
DDRtists, I might not be able to make the time limit, my comp is acting a bit weird, along with my handling of images.

I'll probably get it in at around 10:00 PM, GMT-8.
 
Status
Not open for further replies.
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top