Register - Login
Views: 99369333
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
04-23-22 06:36:35 PM
Jul - Projects and Creations - Need help makeing a layout New poll - New thread - New reply
Pages: 1 2 Next newer thread | Next older thread
Dialga
Member
lol
Level: 28


Posts: 20/149
EXP: 124973
For next: 6365

Since: 05-20-09


Since last post: 12.2 years
Last activity: 10.3 years

Posted on 10-29-09 08:17:12 AM (last edited by Dialga at 10-29-09 11:29 AM) Link | Quote
This is a great layout.
Originally posted by Someone who apparently wrote this
Hi


____________________
TESTING SIGNATURE PART OF LAYOUT
THE DATA IS ASFDSSSDSSDF
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 674/2030
EXP: 6714014
For next: 201887

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 08:47:29 AM Link | Quote
HEY CAN YOU SEE ME
Do you know (X)HTML and CSS?

If not, this is an excellent opportunity to learn. Either you can try learning from scratch (HTML Tutorial) or you can start by taking someone else's layout and modifying it.

Plain ole HTML is becoming one of those basic skills that help a lot in multiple ICT sectors, so perhaps this may be a good opportunity to learn.



____________________
IIIIIIII'M A DODGY HACK
Dialga
Member
lol
Level: 28


Posts: 21/149
EXP: 124973
For next: 6365

Since: 05-20-09


Since last post: 12.2 years
Last activity: 10.3 years

Posted on 10-29-09 08:49:26 AM (last edited by Dialga at 10-29-09 08:28 AM) Link | Quote
I know NOTHING about CSS or HTML.
Edit: Now i know a little :p

____________________
Signature goes here...
ARGH...Why can't I ever get a post background to work?!?!
I cold watch that N64 logo for hours
...It's cold up here.
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 675/2030
EXP: 6714014
For next: 201887

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 08:58:39 AM Link | Quote
HEY CAN YOU SEE ME
I guess the next question is, do you want to learn? It's a pretty useful skill to have these days.

____________________
IIIIIIII'M A DODGY HACK
Dialga
Member
lol
Level: 28


Posts: 22/149
EXP: 124973
For next: 6365

Since: 05-20-09


Since last post: 12.2 years
Last activity: 10.3 years

Posted on 10-29-09 09:18:01 AM Link | Quote
The only thing i want to do is have a black background with a blueish text.

____________________
I command you to look at that N64 logo.
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 676/2030
EXP: 6714014
For next: 201887

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 09:46:36 AM Link | Quote
HEY CAN YOU SEE ME
Ah. Then you don't so much want help making a layout, you want someone to make a layout for you…

Do you have something to offer in return for somebody doing that favour for you?

____________________
IIIIIIII'M A DODGY HACK
Dialga
Member
lol
Level: 28


Posts: 23/149
EXP: 124973
For next: 6365

Since: 05-20-09


Since last post: 12.2 years
Last activity: 10.3 years

Posted on 10-29-09 09:59:32 AM Link | Quote
No, i want to make it myself but i don't know how.

____________________
I command you to look at that N64 logo.
Deleted User
Collection of nobodies
Posted on 10-29-09 10:00:19 AM (last edited by TheKinoko at 10-29-09 07:03 AM) Link | Quote
Originally posted by Dialga
The only thing i want to do is have a black background with a blueish text.

Well, that can be done very easily. Would be even simpler than my layout.

It's just matter of one div and a <font> tag.

By the way, you should separate your sig from your post a bit more. For users who have sig separation set to none, like me, the signature looks like it's part of your post.

____________________


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]

Did you know that, in japanese, 'kinoko' means 'mushroom'?
Dialga
Member
lol
Level: 28


Posts: 24/149
EXP: 124973
For next: 6365

Since: 05-20-09


Since last post: 12.2 years
Last activity: 10.3 years

Posted on 10-29-09 10:04:18 AM Link | Quote
How do i use the "font" tag?

____________________
I command you to look at that N64 logo.
Deleted User
Collection of nobodies
Posted on 10-29-09 10:11:58 AM Link | Quote
Man, you should really start searching for HTML tutorials. Just google search "html font tag" and you've got your answer...

____________________


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 678/2030
EXP: 6714014
For next: 201887

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 10:21:47 AM (last edited by Tarale at 10-29-09 07:25 AM) Link | Quote
HEY CAN YOU SEE ME
Ideally you don't want to use the font tag. It is deprecated which means it's not valid.

OK, so you don't want to learn, but you want to do it yourself. Now you're just contradicting yourself, pal.

OK, you will need a div. A div tag defines a section or division in a HTML document. Everything within that division can be styled (using CSS) to look a certain way. With CSS you can change things like the font size, style, and colour, as well as the background image or colour, and much more.

First, the HTML part:

To create a div, you need an opening <div> and a closing </div> . Everything you want to change needs to go between those two tags.

<div> stuff inside a div </div>

You can change the style of a div by adding the style property, i.e. <div style="…">.

And then from there you'll need some CSS, to go between those two quotation marks…

For example:
<div style="background-color: black; color: white;"> stuff inside the div </div>

will create a black background with white text…

To turn that into a layout, you put the <div style="background-color: black; color: white;"> half into your Post Header, and the <div> into the Signature.

And that's about as basic as a post layout can get.

____________________
IIIIIIII'M A DODGY HACK
Dialga
Member
lol
Level: 28


Posts: 25/149
EXP: 124973
For next: 6365

Since: 05-20-09


Since last post: 12.2 years
Last activity: 10.3 years

Posted on 10-29-09 10:29:41 AM (last edited by Dialga at 10-29-09 07:30 AM) Link | Quote
YAY! it works!
Edit: Forgot "/"

____________________

Watcth is spin round n' round.
Deleted User
Collection of nobodies
Posted on 10-29-09 10:36:01 AM Link | Quote
I'm glad for you but... didn't you say you wanted blue-ish text? because the text is white here.

____________________


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]
Dialga
Member
lol
Level: 28


Posts: 26/149
EXP: 124973
For next: 6365

Since: 05-20-09


Since last post: 12.2 years
Last activity: 10.3 years

Posted on 10-29-09 10:39:42 AM (last edited by Dialga at 10-29-09 07:41 AM) Link | Quote


Fixed
BTW: how do i move the line up?

____________________


Watcth is spin round n' round.
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 680/2030
EXP: 6714014
For next: 201887

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 10:40:20 AM Link | Quote
HEY CAN YOU SEE ME
Of course it works! Would I lead you astray?

But you said blue text. Do you know what colour blue?

One thing you'll have to keep an eye out for is that it can be difficult to read some blues on black background. Pick a lighter blue if you can.

All you need to do is pick a blue (i.e. #70B4E7 and put those numbers in place of where it says "white" at the moment. Or maybe #7082E7 ?

____________________
IIIIIIII'M A DODGY HACK
Deleted User
Collection of nobodies
Posted on 10-29-09 10:43:45 AM (last edited by TheKinoko at 10-29-09 07:47 AM) Link | Quote
Yeah, that's not bad... but about that line... if I was you I'd put it under the post. It would help separating it from the sig.

By the way, is it just me or when I look at the source code in Firefox, I see useless <*font*> tags in his layout?

____________________


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]

Did you know that, in japanese, 'kinoko' means 'mushroom'?

Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 682/2030
EXP: 6714014
For next: 201887

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 10:52:35 AM Link | Quote
HEY CAN YOU SEE ME
<div style="background-color: black; color: seablue;">

would have worked perfectly instead of adding font tags.

____________________
IIIIIIII'M A DODGY HACK
Deleted User
Collection of nobodies
Posted on 10-29-09 10:55:55 AM Link | Quote
That's right. Plus font tags are deprecated, as you said. So yeah, div forever

By the way, you might want to add "display: inline" in the div style, so you don't have an empty line under it...

____________________


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]


===================
[Posted by TheKinoko]
Dialga
Member
lol
Level: 28


Posts: 27/149
EXP: 124973
For next: 6365

Since: 05-20-09


Since last post: 12.2 years
Last activity: 10.3 years

Posted on 10-29-09 11:17:16 AM Link | Quote


Originally posted by Tarale
<div style="background-color: black; color: seablue;">

would have worked perfectly instead of adding font tags.



It did not work for me, it colored the link instead of the text


____________________


Watcth is spin round n' round.
Tarale
Catgirl
C:\ DOS
C:\ DOS RUN
RUN DOS RUN
Level: 89


Posts: 684/2030
EXP: 6714014
For next: 201887

Since: 07-23-07

Pronouns: she/her

Since last post: 2.0 years
Last activity: 1.6 years

Posted on 10-29-09 11:25:32 AM Link | Quote
HEY CAN YOU SEE ME
<div style="background-color: black; color: white;">
<br><font color="seablue"><hr>Fixed
<br>BTW: how do i move the line up?<br><br>--------------------<br></div>
<br></font>
<br>Watcth is spin round n' round.



Which link? Now you're starting to confuse me.

____________________
IIIIIIII'M A DODGY HACK
Pages: 1 2 Next newer thread | Next older thread
Jul - Projects and Creations - Need help makeing a layout New poll - New thread - New reply


Rusted Logic

Acmlmboard - commit 47be4dc [2021-08-23]
©2000-2022 Acmlm, Xkeeper, Kaito Sinclaire, et al.

30 database queries, 13 query cache hits.
Query execution time:  0.087586 seconds
Script execution time:  0.029399 seconds
Total render time:  0.116985 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 2 column 177 - Warning: unescaped & or unknown entity "&page"
line 119 column 11 - Warning: <form> isn't allowed in <table> elements
line 118 column 10 - Info: <table> previously mentioned
line 120 column 11 - Warning: missing <tr>
line 120 column 119 - Warning: missing </font> before </td>
line 124 column 16 - Warning: plain text isn't allowed in <tr> elements
line 120 column 11 - Info: <tr> previously mentioned
line 125 column 68 - Warning: missing </nobr> before </td>
line 141 column 68 - Warning: missing </nobr> before <tr>
line 147 column 35 - Warning: missing <tr>
line 147 column 50 - Warning: missing </font> before </td>
line 148 column 37 - Warning: unescaped & or unknown entity "&id"
line 147 column 197 - Warning: missing </font> before </table>
line 149 column 35 - Warning: missing <tr>
line 149 column 96 - Warning: unescaped & or unknown entity "&page"
line 149 column 50 - Warning: missing </font> before </td>
line 149 column 131 - Warning: missing </font> before </table>
line 156 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 158 column 9 - Warning: missing <tr>
line 176 column 13 - Warning: missing <tr>
line 177 column 101 - Warning: unescaped & or unknown entity "&postid"
line 184 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 186 column 9 - Warning: missing <tr>
line 204 column 13 - Warning: missing <tr>
line 205 column 101 - Warning: unescaped & or unknown entity "&postid"
line 207 column 74 - Warning: <style> isn't allowed in <td> elements
line 207 column 9 - Info: <td> previously mentioned
line 216 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 218 column 9 - Warning: missing <tr>
line 236 column 13 - Warning: missing <tr>
line 237 column 101 - Warning: unescaped & or unknown entity "&postid"
line 246 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 248 column 9 - Warning: missing <tr>
line 266 column 13 - Warning: missing <tr>
line 267 column 101 - Warning: unescaped & or unknown entity "&postid"
line 269 column 74 - Warning: <style> isn't allowed in <td> elements
line 269 column 9 - Info: <td> previously mentioned
line 272 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 274 column 9 - Warning: missing <tr>
line 292 column 13 - Warning: missing <tr>
line 293 column 101 - Warning: unescaped & or unknown entity "&postid"
line 298 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 300 column 9 - Warning: missing <tr>
line 318 column 13 - Warning: missing <tr>
line 319 column 101 - Warning: unescaped & or unknown entity "&postid"
line 321 column 74 - Warning: <style> isn't allowed in <td> elements
line 321 column 9 - Info: <td> previously mentioned
line 326 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 328 column 9 - Warning: missing <tr>
line 346 column 13 - Warning: missing <tr>
line 347 column 101 - Warning: unescaped & or unknown entity "&postid"
line 351 column 15 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 352 column 25 - Warning: missing <tr>
line 359 column 33 - Warning: missing <tr>
line 360 column 121 - Warning: unescaped & or unknown entity "&postid"
line 368 column 1062 - Warning: discarding unexpected </div>
line 368 column 1068 - Warning: discarding unexpected </div>
line 368 column 1074 - Warning: discarding unexpected </td>
line 370 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 372 column 9 - Warning: missing <tr>
line 390 column 13 - Warning: missing <tr>
line 391 column 101 - Warning: unescaped & or unknown entity "&postid"
line 395 column 15 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 396 column 25 - Warning: missing <tr>
line 403 column 33 - Warning: missing <tr>
line 404 column 121 - Warning: unescaped & or unknown entity "&postid"
line 408 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 410 column 9 - Warning: missing <tr>
line 428 column 13 - Warning: missing <tr>
line 429 column 101 - Warning: unescaped & or unknown entity "&postid"
line 431 column 74 - Warning: <style> isn't allowed in <td> elements
line 431 column 9 - Info: <td> previously mentioned
line 456 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 458 column 9 - Warning: missing <tr>
line 476 column 13 - Warning: missing <tr>
line 477 column 101 - Warning: unescaped & or unknown entity "&postid"
line 483 column 15 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 484 column 25 - Warning: missing <tr>
line 491 column 33 - Warning: missing <tr>
line 492 column 121 - Warning: unescaped & or unknown entity "&postid"
line 496 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 498 column 9 - Warning: missing <tr>
line 516 column 13 - Warning: missing <tr>
line 517 column 101 - Warning: unescaped & or unknown entity "&postid"
line 520 column 130 - Warning: missing </font> before <hr>
line 520 column 156 - Warning: inserting implicit <font>
line 522 column 1 - Warning: inserting implicit <font>
line 526 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 528 column 9 - Warning: missing <tr>
line 546 column 13 - Warning: missing <tr>
line 547 column 101 - Warning: unescaped & or unknown entity "&postid"
line 549 column 74 - Warning: <style> isn't allowed in <td> elements
line 549 column 9 - Info: <td> previously mentioned
line 557 column 15 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 558 column 25 - Warning: missing <tr>
line 565 column 33 - Warning: missing <tr>
line 566 column 121 - Warning: unescaped & or unknown entity "&postid"
line 571 column 850 - Warning: discarding unexpected </div>
line 571 column 856 - Warning: discarding unexpected </div>
line 571 column 862 - Warning: discarding unexpected </td>
line 573 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 575 column 9 - Warning: missing <tr>
line 593 column 13 - Warning: missing <tr>
line 594 column 101 - Warning: unescaped & or unknown entity "&postid"
line 596 column 74 - Warning: <style> isn't allowed in <td> elements
line 596 column 9 - Info: <td> previously mentioned
line 600 column 15 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 601 column 25 - Warning: missing <tr>
line 608 column 33 - Warning: missing <tr>
line 609 column 121 - Warning: unescaped & or unknown entity "&postid"
line 615 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 617 column 9 - Warning: missing <tr>
line 635 column 13 - Warning: missing <tr>
line 636 column 101 - Warning: unescaped & or unknown entity "&postid"
line 638 column 74 - Warning: missing </sub> before <hr>
line 638 column 83 - Warning: discarding unexpected </sub>
line 639 column 145 - Warning: missing </font> before <blockquote>
line 639 column 179 - Warning: inserting implicit <font>
line 639 column 179 - Warning: missing </font> before <hr>
line 639 column 242 - Warning: inserting implicit <font>
line 639 column 242 - Warning: missing </font> before <hr>
line 641 column 449 - Warning: inserting implicit <font>
line 642 column 1 - Warning: inserting implicit <font>
line 645 column 1 - Warning: inserting implicit <font>
line 649 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 651 column 9 - Warning: missing <tr>
line 669 column 13 - Warning: missing <tr>
line 670 column 101 - Warning: unescaped & or unknown entity "&postid"
line 672 column 74 - Warning: <style> isn't allowed in <td> elements
line 672 column 9 - Info: <td> previously mentioned
line 682 column 17 - Warning: missing <tr>
line 682 column 17 - Warning: discarding unexpected <table>
line 685 column 35 - Warning: missing <tr>
line 685 column 96 - Warning: unescaped & or unknown entity "&page"
line 685 column 50 - Warning: missing </font> before </td>
line 685 column 131 - Warning: missing </font> before </table>
line 687 column 35 - Warning: missing <tr>
line 687 column 50 - Warning: missing </font> before </td>
line 688 column 37 - Warning: unescaped & or unknown entity "&id"
line 687 column 197 - Warning: missing </font> before </table>
line 689 column 17 - Warning: discarding unexpected </textarea>
line 689 column 28 - Warning: discarding unexpected </form>
line 689 column 35 - Warning: discarding unexpected </embed>
line 689 column 43 - Warning: discarding unexpected </noembed>
line 689 column 53 - Warning: discarding unexpected </noscript>
line 689 column 64 - Warning: discarding unexpected </noembed>
line 689 column 74 - Warning: discarding unexpected </embed>
line 689 column 82 - Warning: discarding unexpected </table>
line 689 column 90 - Warning: discarding unexpected </table>
line 691 column 9 - Warning: missing </font> before <table>
line 703 column 25 - Warning: discarding unexpected </font>
line 712 column 58 - Warning: discarding unexpected </font>
line 690 column 1 - Warning: missing </center>
line 120 column 63 - Warning: <img> lacks "alt" attribute
line 125 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 125 column 93 - Warning: <img> lacks "alt" attribute
line 141 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 141 column 98 - Warning: <img> lacks "alt" attribute
line 148 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 245 - Warning: <img> proprietary attribute value "absmiddle"
line 161 column 22 - Warning: <img> lacks "alt" attribute
line 161 column 63 - Warning: <img> lacks "alt" attribute
line 161 column 112 - Warning: <img> lacks "alt" attribute
line 161 column 162 - Warning: <img> lacks "alt" attribute
line 162 column 11 - Warning: <img> lacks "alt" attribute
line 172 column 15 - Warning: <img> lacks "alt" attribute
line 189 column 22 - Warning: <img> lacks "alt" attribute
line 189 column 63 - Warning: <img> lacks "alt" attribute
line 189 column 112 - Warning: <img> lacks "alt" attribute
line 189 column 162 - Warning: <img> lacks "alt" attribute
line 190 column 11 - Warning: <img> lacks "alt" attribute
line 200 column 15 - Warning: <img> lacks "alt" attribute
line 221 column 22 - Warning: <img> lacks "alt" attribute
line 221 column 63 - Warning: <img> lacks "alt" attribute
line 221 column 112 - Warning: <img> lacks "alt" attribute
line 221 column 162 - Warning: <img> lacks "alt" attribute
line 222 column 11 - Warning: <img> lacks "alt" attribute
line 232 column 15 - Warning: <img> lacks "alt" attribute
line 242 column 309 - Warning: <img> proprietary attribute value "absmiddle"
line 242 column 309 - Warning: <img> lacks "alt" attribute
line 251 column 22 - Warning: <img> lacks "alt" attribute
line 251 column 63 - Warning: <img> lacks "alt" attribute
line 251 column 112 - Warning: <img> lacks "alt" attribute
line 251 column 162 - Warning: <img> lacks "alt" attribute
line 252 column 11 - Warning: <img> lacks "alt" attribute
line 262 column 15 - Warning: <img> lacks "alt" attribute
line 277 column 22 - Warning: <img> lacks "alt" attribute
line 277 column 63 - Warning: <img> lacks "alt" attribute
line 277 column 112 - Warning: <img> lacks "alt" attribute
line 277 column 162 - Warning: <img> lacks "alt" attribute
line 278 column 11 - Warning: <img> lacks "alt" attribute
line 288 column 15 - Warning: <img> lacks "alt" attribute
line 303 column 22 - Warning: <img> lacks "alt" attribute
line 303 column 63 - Warning: <img> lacks "alt" attribute
line 303 column 112 - Warning: <img> lacks "alt" attribute
line 303 column 162 - Warning: <img> lacks "alt" attribute
line 304 column 11 - Warning: <img> lacks "alt" attribute
line 314 column 15 - Warning: <img> lacks "alt" attribute
line 331 column 22 - Warning: <img> lacks "alt" attribute
line 331 column 63 - Warning: <img> lacks "alt" attribute
line 331 column 112 - Warning: <img> lacks "alt" attribute
line 331 column 162 - Warning: <img> lacks "alt" attribute
line 332 column 11 - Warning: <img> lacks "alt" attribute
line 342 column 15 - Warning: <img> lacks "alt" attribute
line 355 column 37 - Warning: <img> lacks "alt" attribute
line 367 column 677 - Warning: <font> attribute "color" lacks value
line 367 column 760 - Warning: <font> attribute "color" lacks value
line 367 column 843 - Warning: <font> attribute "color" lacks value
line 367 column 926 - Warning: <font> attribute "color" lacks value
line 375 column 22 - Warning: <img> lacks "alt" attribute
line 375 column 63 - Warning: <img> lacks "alt" attribute
line 375 column 112 - Warning: <img> lacks "alt" attribute
line 375 column 162 - Warning: <img> lacks "alt" attribute
line 376 column 11 - Warning: <img> lacks "alt" attribute
line 386 column 15 - Warning: <img> lacks "alt" attribute
line 399 column 37 - Warning: <img> lacks "alt" attribute
line 406 column 317 - Warning: <font> attribute "color" lacks value
line 406 column 400 - Warning: <font> attribute "color" lacks value
line 406 column 483 - Warning: <font> attribute "color" lacks value
line 406 column 566 - Warning: <font> attribute "color" lacks value
line 413 column 22 - Warning: <img> lacks "alt" attribute
line 413 column 63 - Warning: <img> lacks "alt" attribute
line 413 column 112 - Warning: <img> lacks "alt" attribute
line 413 column 162 - Warning: <img> lacks "alt" attribute
line 414 column 11 - Warning: <img> lacks "alt" attribute
line 424 column 15 - Warning: <img> lacks "alt" attribute
line 433 column 1524 - Warning: <img> proprietary attribute value "absmiddle"
line 433 column 1524 - Warning: <img> lacks "alt" attribute
line 461 column 22 - Warning: <img> lacks "alt" attribute
line 461 column 63 - Warning: <img> lacks "alt" attribute
line 461 column 112 - Warning: <img> lacks "alt" attribute
line 461 column 162 - Warning: <img> lacks "alt" attribute
line 462 column 11 - Warning: <img> lacks "alt" attribute
line 472 column 15 - Warning: <img> lacks "alt" attribute
line 480 column 185 - Warning: <img> proprietary attribute value "absmiddle"
line 480 column 185 - Warning: <img> lacks "alt" attribute
line 487 column 37 - Warning: <img> lacks "alt" attribute
line 494 column 290 - Warning: <font> attribute "color" lacks value
line 494 column 373 - Warning: <font> attribute "color" lacks value
line 494 column 456 - Warning: <font> attribute "color" lacks value
line 494 column 539 - Warning: <font> attribute "color" lacks value
line 501 column 22 - Warning: <img> lacks "alt" attribute
line 501 column 63 - Warning: <img> lacks "alt" attribute
line 501 column 112 - Warning: <img> lacks "alt" attribute
line 501 column 162 - Warning: <img> lacks "alt" attribute
line 502 column 11 - Warning: <img> lacks "alt" attribute
line 512 column 15 - Warning: <img> lacks "alt" attribute
line 520 column 130 - Warning: <font> attribute "color" has invalid value "seablue"
line 520 column 156 - Warning: <font> attribute "color" has invalid value "seablue"
line 522 column 1 - Warning: <font> attribute "color" has invalid value "seablue"
line 531 column 22 - Warning: <img> lacks "alt" attribute
line 531 column 63 - Warning: <img> lacks "alt" attribute
line 531 column 112 - Warning: <img> lacks "alt" attribute
line 531 column 162 - Warning: <img> lacks "alt" attribute
line 532 column 11 - Warning: <img> lacks "alt" attribute
line 542 column 15 - Warning: <img> lacks "alt" attribute
line 549 column 1330 - Warning: <img> proprietary attribute value "absmiddle"
line 549 column 1330 - Warning: <img> lacks "alt" attribute
line 561 column 37 - Warning: <img> lacks "alt" attribute
line 570 column 444 - Warning: <font> attribute "color" lacks value
line 570 column 527 - Warning: <font> attribute "color" lacks value
line 570 column 610 - Warning: <font> attribute "color" lacks value
line 570 column 693 - Warning: <font> attribute "color" lacks value
line 578 column 22 - Warning: <img> lacks "alt" attribute
line 578 column 63 - Warning: <img> lacks "alt" attribute
line 578 column 112 - Warning: <img> lacks "alt" attribute
line 578 column 162 - Warning: <img> lacks "alt" attribute
line 579 column 11 - Warning: <img> lacks "alt" attribute
line 589 column 15 - Warning: <img> lacks "alt" attribute
line 604 column 37 - Warning: <img> lacks "alt" attribute
line 611 column 199 - Warning: <img> proprietary attribute value "absmiddle"
line 611 column 199 - Warning: <img> lacks "alt" attribute
line 613 column 446 - Warning: <font> attribute "color" lacks value
line 613 column 529 - Warning: <font> attribute "color" lacks value
line 613 column 612 - Warning: <font> attribute "color" lacks value
line 613 column 695 - Warning: <font> attribute "color" lacks value
line 620 column 22 - Warning: <img> lacks "alt" attribute
line 620 column 63 - Warning: <img> lacks "alt" attribute
line 620 column 112 - Warning: <img> lacks "alt" attribute
line 620 column 162 - Warning: <img> lacks "alt" attribute
line 621 column 11 - Warning: <img> lacks "alt" attribute
line 631 column 15 - Warning: <img> lacks "alt" attribute
line 654 column 22 - Warning: <img> lacks "alt" attribute
line 654 column 63 - Warning: <img> lacks "alt" attribute
line 654 column 112 - Warning: <img> lacks "alt" attribute
line 654 column 162 - Warning: <img> lacks "alt" attribute
line 655 column 11 - Warning: <img> lacks "alt" attribute
line 665 column 15 - Warning: <img> lacks "alt" attribute
line 688 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 688 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 688 column 245 - Warning: <img> proprietary attribute value "absmiddle"
line 697 column 25 - Warning: <img> lacks "alt" attribute
line 702 column 267 - Warning: <img> lacks "alt" attribute
line 520 column 130 - Warning: trimming empty <font>
line 638 column 74 - Warning: trimming empty <sub>
line 639 column 145 - Warning: trimming empty <font>
line 641 column 449 - Warning: trimming empty <font>
line 682 column 17 - Warning: trimming empty <tr>
line 125 column 68 - Warning: <nobr> is not approved by W3C
line 141 column 68 - Warning: <nobr> is not approved by W3C
line 177 column 27 - Warning: <nobr> is not approved by W3C
line 205 column 27 - Warning: <nobr> is not approved by W3C
line 237 column 27 - Warning: <nobr> is not approved by W3C
line 267 column 27 - Warning: <nobr> is not approved by W3C
line 293 column 27 - Warning: <nobr> is not approved by W3C
line 319 column 27 - Warning: <nobr> is not approved by W3C
line 347 column 27 - Warning: <nobr> is not approved by W3C
line 360 column 47 - Warning: <nobr> is not approved by W3C
line 391 column 27 - Warning: <nobr> is not approved by W3C
line 404 column 47 - Warning: <nobr> is not approved by W3C
line 429 column 27 - Warning: <nobr> is not approved by W3C
line 477 column 27 - Warning: <nobr> is not approved by W3C
line 492 column 47 - Warning: <nobr> is not approved by W3C
line 517 column 27 - Warning: <nobr> is not approved by W3C
line 547 column 27 - Warning: <nobr> is not approved by W3C
line 566 column 47 - Warning: <nobr> is not approved by W3C
line 594 column 27 - Warning: <nobr> is not approved by W3C
line 609 column 47 - Warning: <nobr> is not approved by W3C
line 636 column 27 - Warning: <nobr> is not approved by W3C
line 670 column 27 - Warning: <nobr> is not approved by W3C
Info: Document content looks like HTML5
Info: No system identifier in emitted doctype
Tidy found 313 warnings and 0 errors!


The alt attribute should be used to give a short description
of an image; longer descriptions should be given with the
longdesc attribute which takes a URL linked to the description.
These measures are needed for people using non-graphical browsers.

For further advice on how to make your pages accessible
see http://www.w3.org/WAI/GL.
You are recommended to use CSS to specify the font and
properties such as its size and color. This will reduce
the size of HTML files and make them easier to maintain
compared with using <FONT> elements.

You are recommended to use CSS to control line wrapping.
Use "white-space: nowrap" to inhibit wrapping in place
of inserting <NOBR>...</NOBR> into the markup.

About HTML Tidy: https://github.com/htacg/tidy-html5
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
Validate your HTML documents: http://validator.w3.org/nu/
Lobby your company to join the W3C: http://www.w3.org/Consortium

Do you speak a language other than English, or a different variant of
English? Consider helping us to localize HTML Tidy. For details please see
https://github.com/htacg/tidy-html5/blob/master/README/LOCALIZE.md