|
|
|
 |
Posted 2008-08-11, 05:46 PM
in reply to Kazilla's post starting "One of the 1st lines i read on..."
|
 |
 |
 |
One of the 1st lines i read on W3Schools was 'you can use build it as you see it programs like dreamweaver' but we highly recommend learning the html coding to be good at it (something to that extent)
Seeing as i just want something very simple to navigate, and im not looking to turn this into a profession i could probably skip most of the html coding itself. problem is that dreamweave is pretty expensive
|
I tried to build websites, before I learned HTML, with Dreamweaver and Microsoft's equivalent program. The layouts just don't look good. You need to learn CSS with XHTML, otherwise you're going to be stuck with building very amateur web designs that don't look right.
EDIT: Take for example, you want a border around only one side. You need to learn CSS.
Code:
<head>
<style type="text/css">
<!--
table, tr, td {
padding:0;
margin:0;
border:none;
}
.mystyle {
padding:0;
margin:0;
border-left:#000BBB 1px solid; /* Blue 1pixel solid border on the left */
}
-->
</style>
</head>
<body>
<table cellspacing="0">
<tr>
<td class="mystyle">Hello</td>
</tr>
</table>
</body> |

Work List
疲れていますから 寝むってありますね。 むずかしいです。 また、ケーキ屋で ケーキを食べていました。
I've considered being a translator, but I dunno. It feels like a lot of work. If someone gets angry then I have to deal with it, you know? I'd rather just relax.
Speed Test
Favorite Anime/Manga
#01 Clannad ~After Story~
#02 Trigun {Maximum}
#03 Koi Kaze
#04 Berserk
#05 Outlaw Star
#06 Slayers
#07 Desert Punk
#08 Spirited Away
#09 Fullmetal Alchemist
#10 Shakugan no Shana
#11 Death Note
#12 FLCL
#13 Tokyo Magnitude 8.0
#14 Toradora
#15 Gunslinger Girl
Anime List
Last edited by Goodlookinguy; 2008-08-11 at 05:53 PM.
|
 |
 |
 |
|
|
|
|
|
|
|