Register - Login
Views: 99565401
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
04-29-22 08:33:42 AM
Jul - Posts by Shining Wing
Pages: 1 2 3 4 5
Shining Wing

Shyguy
Level: 18


Posts: 1/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-01-19 09:29:07 PM, in Introductions (last edited by Shining Wing at 04-02-19 06:50:38 AM) Link
Hiii~ My name's Shining Wing, but everyone calls me Shiny ♥

I'm just checking this site out because some of the people running this site seem super nice, and it was actually seeing the pronoun feature and the amount of other trans girls on this site that made me want to join hehe ♥

I probably won't post here much (tbh I might forget the site exists in a few days xux) but I have this account regardless hehe >w< So, hello~!

Also, TCRF is a real good site c:

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
Shining Wing

Shyguy
Level: 18


Posts: 2/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-01-19 09:35:36 PM, in What's the farthest you've traveled in each cardinal direction? Link
Eastmost for me would be where I live right now! (on the east coast of Nova Scotia, Canada)
The farthest south for me would be Port Saint Lucie, Florida (it was a family vacation around a month ago)
I don't really have anything for the other directions, sorry!
Shining Wing

Shyguy
Level: 18


Posts: 3/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-01-19 11:31:55 PM, in Anyone own dolls/plushies/etc. of gaming characters? Link
I have so many that it would be hard to get a picture of all of them, but here's my latest plushes, Amy Rose and Chao~ ♥



...Sorry for the big image xux

____________________
I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's twitter ♥
Shining Wing

Shyguy
Level: 18


Posts: 4/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-02-19 12:44:21 AM, in Game Boy Advance appreciation thread Link
The GBA is one of my favorite systems! The MegaMan Battle Network series is one of my all-time favorites, and lately I've been playing a pretty good amount of Pokémon Pinball Ruby & Sapphire ❤

I have an original GBA (the clear icy one) and a blue SP (the earlier frontlit model), and while I prefer how the original feels, I use the SP a lot more since the screen is waaay more visible xux Though, lately I haven't been using my actual hardware too much, since I've been using an emulator in RetroArch on my Switch since it's a lot more convenient... still though, I still love my GBAs a lot, especially since there's stuff I can only do on the hardware

My favorite accessory for the GBA would probably be my Battle Chip Gate to go with MegaMan Battle Network 4 (though it's not that useful until the English translation of 4.5 comes out...), it's pretty unique and while it's recently gotten emulator support in two emulators, nothing beats the feel of putting a real battle chip in the thing and having it work in the game hehe ❤

____________________
I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's twitter ♥
Shining Wing

Shyguy
Level: 18


Posts: 5/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-02-19 02:35:27 AM, in Trying to figure out post layouts Link
Hi, so I'm trying to figure out how to do post layouts. I'm trying to use a <style> tag since I can't even begin to figure out inline styles (I basically know no HTML, only CSS for stuff like Stylus), but I'm clearly having difficulties here... the biggest problem is that I think I'm trying to theme the wrong things...? I'm trying to theme general elements that just end up hitting the site body and such without actually theming the post itself... I have no idea what I'm actually supposed to be doing with this. Here's the stuff I put together anyway... I really have no idea what I need to change to have this theme the actual post

Here's the HTML/CSS I have:

<style>
@import url('https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono');

body {
font-size: 14;
margin: 24px;
font-family: Roboto, Verdana;
background: #212121;
}

.fonts {
font-size: 12px;
font-family: Roboto, Verdana, sans-serif;
color: rgba(255,255,255,0.60);
}

blockquote {
margin: 16px 0px;
border-left: 2px solid #FF4081;
padding: 12px 24px 8px 24px;
background-color: #424242;
border-radius: 2px;
}

blockquote>hr {
border-width:0;
margin: 4px 0px
}

a {
color: #FF80AB;
}

a:visited {
color: #FF4081;
}

code {
font-family: 'Roboto Mono', monospace;
}
</style>

Note that I run this through a minify tool which strips out the line breaks and such before I use this on the site, so ignore those.

I just feel super confused by this... I'd really appreciate any help in figuring out how to make this work as a post layout
Shining Wing

Shyguy
Level: 18


Posts: 6/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-02-19 04:13:37 AM, in Trying to figure out post layouts (last edited by Shining Wing at 04-02-19 09:07:31 PM) Link
Originally posted by xdaniel
You'll want to put your post into a container, and then only apply the style to said container - or at least that's what I do and it works, I don't really know if there's another way.

For example, make all your style bits only apply to elements of a certain ID, say #shiningwing-post { ... } or whatever, then put the <style> block into the post header, then open a <div> with the ID you specified, hence ex. <div id="#shiningwing-post"> - don't close it here yet. Put the closing </div> tag into the footer/signature, that'll wrap your post in the container and, because of the ID, only apply the style to that instead of the whole page.

Practical example, my layout as of right now:



I hope that helps and made sense? Tho I'm not too great with HTML and CSS myself ^^"


That's exactly what I needed to know, thanks a bunch! It seems to be working just fine now~ ♥

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 7/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-02-19 07:13:19 AM, in Twitch injects ads directly into the stream now. Link
They have a subscription service that gets rid of the ads (and gives a few other mostly useless features), but I'd say it's pretty overpriced for what it is. Also note that that service (Twitch Turbo) is a separate distinct service from their other one (Twitch Prime) which gives you game loot. That one doesn't remove ads. For some reason.

I don't really like Twitch much. Though I suppose I kinda just hate Amazon as a whole, really. But especially Twitch.

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
Shining Wing

Shyguy
Level: 18


Posts: 8/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-03-19 04:00:02 AM, in What's on YOUR mind? Link
Thinking of learning 68k assembly even though I'm not really a programmer of any kind xux

For some reason assembly has always looked really interesting to me hehe

I've started reading the beginning of MarkeyJester's 68k beginner's tutorial, and it's interesting enough and more importantly clear enough to keep me reading for at least... let's hope I don't end up dropping it in like two days probably

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 9/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-08-19 06:05:18 PM, in What's on YOUR mind? Link
Originally posted by InvisibleUp
@Shining Wing:

There was this thread on Mega Drive programming that just got posted on Sonic Retro that has some useful links. https://forums.sonicretro.org/index.php?showtopic=38528

There's also the GameHut video series at https://www.youtube.com/watch?v=rnCPBcSRt7Y&list=PLi29TNPrdbwLmUjiVvLLrRky7cXrlSIYr where he gives you some sample code to play with and hack on.

Ooh, that'll probably be helpful after I'm done with this tutorial (which is for the 68k in general rather than the Genesis specifically), thanks~

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 10/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-10-19 07:16:45 AM, in It's my birthday! Link
Happy birthday~!

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 11/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-13-19 06:09:48 PM, in Maine Link
I usually visit Maine with my family once a year for our family vacation hehe We usually go to Portland and the surrounding area. My dad likes to see the Sea Dogs games, and my brother and I enjoy going to Funtown Splashtown USA which isn't too far out hehe, plus there's that relatively new Round1 place in the Maine Mall which is honestly a really good arcade by today's standards

Plus I recently made a close friend online a few weeks who happens to live in Maine, so we've been talking about maybe meeting up IRL someday~

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 12/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-14-19 07:20:52 PM, in the gang discusses technology they want Link
I basically just want a laptop, any laptop, that isn't my damn Chromebook... Chrome OS is such a piece of shit (and I've been trying to switch to Firefox anyway), the later updates have been severely harming performance on my Chromebook, and since it's an ARM one I don't really have any options for other OSes...

As far as specific technology goes, I'd really like some high-end Apple stuff (like a better iPhone than my SE and a good MacBook), but at the same time, I could never afford that xux

I tend to like Apple's hardware and software, but I pretty much despise them as a company... I like them more than Google, but that's not saying much. I think if I got a new laptop though at some point, it'd probably be a relatively cheap Windows one

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 13/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-19-19 06:12:17 PM, in What's on YOUR mind? Link
There's literally one thing on my mind right now and it's that I'm such a lesbian and I melt at the sight of any cute girl (which is pretty much all of them) and aaaaaaaaaa

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 14/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 04-22-19 08:08:21 PM, in New stuff you got Link
Got myself a refurbished Kobo Touch e-reader, it just came in today The model's around 8 years old (wow), but e-readers don't really get obsolete in the same way that phones and tablets do, and this thing still works fine for everything I need it for



____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 15/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 05-01-19 06:13:08 PM, in Game Boy Advance appreciation thread Link
Originally posted by Kawaii-e
What was / is your highscore on Pinball?

I never liked it back at release, but finally got into it last year and started to get some usable high scores too!

My attempts last year:
Sapphire Table
Ruby Table

Ah, my high scores are somewhere in the 20-million range, far less than your scores hehe... I'm pretty impressed by your scores though

I haven't really been playing the game too much since I posted that actually hehe

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 16/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 05-04-19 12:15:23 AM, in Jul Pub Link
For some reason I've been in a cleaning mood, I just cleaned off my headphones, Poké Ball Plus, and the top of my computer desk. There's still so much cleaning left to do in my room, but I have no idea when I'll get to that, so I'm just proud that I had the energy to at least get this done hehe, since normally I never have the energy to do stuff like this

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 17/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 05-06-19 06:31:43 PM, in What's on YOUR mind? Link
Personally I really like the default theme, blue and purple looks nice and pleasant hehe

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 18/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 05-06-19 06:34:41 PM, in the gang discusses technology they want Link


I've been really interested in getting myself one of these Fighting Commander controllers lately >u< I like fighting games, but none of my controllers are too comfortable for them (plus I prefer Street Fighter which uses six buttons), so I feel like I'd at least play them a little bit more if I had a controller like this hehe

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 19/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 05-06-19 11:22:30 PM, in the gang discusses technology they want Link
Originally posted by Darkhero
You can also look into the Retro-Bit Saturn controllers which are cheaper and I found works rather well for fighting games, but the only options they currently have match the original layout exactly (they're going to release a controller with a controller with a select button and analog sticks later this year, but I'm not sure exactly when and it might be bluetooth only)

That's cool, but it wouldn't work as well for me as the Fighting Commander since it doesn't support PS3/4, which some of my fighting games are on (such as Super Street Fighter II HD Remix)

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Shining Wing

Shyguy
Level: 18


Posts: 20/84
EXP: 25805
For next: 4092

Since: 04-01-19

Pronouns: she/her
From: Nova Scotia, Canada

Since last post: 60 days
Last activity: 32 days

Posted on 05-19-19 05:31:06 PM, in [tumbleweeds] Link
I always check this site, I'm just really quiet most of the time

____________________

I'm on Twitter apparently
But more importantly, check out my awesome girlfriend's Twitter ♥
My post layout is a work in progress!
Pages: 1 2 3 4 5
Jul - Posts by Shining Wing


Rusted Logic

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

36 database queries, 40 query cache hits.
Query execution time:  0.135455 seconds
Script execution time:  0.055703 seconds
Total render time:  0.191158 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
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 147 column 139 - Warning: missing </font> before </table>
line 149 column 35 - Warning: missing <tr>
line 149 column 98 - Warning: unescaped & or unknown entity "&page"
line 149 column 132 - Warning: unescaped & or unknown entity "&page"
line 149 column 166 - Warning: unescaped & or unknown entity "&page"
line 149 column 200 - Warning: unescaped & or unknown entity "&page"
line 149 column 50 - Warning: missing </font> before </td>
line 149 column 235 - 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 179 column 74 - Warning: <style> isn't allowed in <td> elements
line 179 column 9 - Info: <td> previously mentioned
line 190 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 192 column 9 - Warning: missing <tr>
line 210 column 13 - Warning: missing <tr>
line 218 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 220 column 9 - Warning: missing <tr>
line 238 column 13 - Warning: missing <tr>
line 249 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 251 column 9 - Warning: missing <tr>
line 269 column 13 - Warning: missing <tr>
line 280 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 282 column 9 - Warning: missing <tr>
line 300 column 13 - Warning: missing <tr>
line 354 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 356 column 9 - Warning: missing <tr>
line 374 column 13 - Warning: missing <tr>
line 377 column 74 - Warning: <style> isn't allowed in <td> elements
line 377 column 9 - Info: <td> previously mentioned
line 393 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 395 column 9 - Warning: missing <tr>
line 413 column 13 - Warning: missing <tr>
line 416 column 74 - Warning: <style> isn't allowed in <td> elements
line 416 column 9 - Info: <td> previously mentioned
line 423 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 425 column 9 - Warning: missing <tr>
line 443 column 13 - Warning: missing <tr>
line 446 column 74 - Warning: <style> isn't allowed in <td> elements
line 446 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 479 column 74 - Warning: <style> isn't allowed in <td> elements
line 479 column 9 - Info: <td> previously mentioned
line 483 column 1127 - Warning: unescaped & or unknown entity "&list"
line 490 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 492 column 9 - Warning: missing <tr>
line 510 column 13 - Warning: missing <tr>
line 513 column 74 - Warning: <style> isn't allowed in <td> elements
line 513 column 9 - Info: <td> previously mentioned
line 519 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 521 column 9 - Warning: missing <tr>
line 539 column 13 - Warning: missing <tr>
line 542 column 74 - Warning: <style> isn't allowed in <td> elements
line 542 column 9 - Info: <td> previously mentioned
line 550 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 552 column 9 - Warning: missing <tr>
line 570 column 13 - Warning: missing <tr>
line 573 column 74 - Warning: <style> isn't allowed in <td> elements
line 573 column 9 - Info: <td> previously mentioned
line 583 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 585 column 9 - Warning: missing <tr>
line 603 column 13 - Warning: missing <tr>
line 606 column 74 - Warning: <style> isn't allowed in <td> elements
line 606 column 9 - Info: <td> previously mentioned
line 612 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 614 column 9 - Warning: missing <tr>
line 632 column 13 - Warning: missing <tr>
line 635 column 74 - Warning: <style> isn't allowed in <td> elements
line 635 column 9 - Info: <td> previously mentioned
line 643 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 645 column 9 - Warning: missing <tr>
line 663 column 13 - Warning: missing <tr>
line 666 column 74 - Warning: <style> isn't allowed in <td> elements
line 666 column 9 - Info: <td> previously mentioned
line 671 column 1093 - Warning: unescaped & or unknown entity "&t"
line 681 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 683 column 9 - Warning: missing <tr>
line 701 column 13 - Warning: missing <tr>
line 704 column 74 - Warning: <style> isn't allowed in <td> elements
line 704 column 9 - Info: <td> previously mentioned
line 710 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 712 column 9 - Warning: missing <tr>
line 730 column 13 - Warning: missing <tr>
line 733 column 74 - Warning: <style> isn't allowed in <td> elements
line 733 column 9 - Info: <td> previously mentioned
line 739 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 741 column 9 - Warning: missing <tr>
line 759 column 13 - Warning: missing <tr>
line 762 column 74 - Warning: <style> isn't allowed in <td> elements
line 762 column 9 - Info: <td> previously mentioned
line 770 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 772 column 9 - Warning: missing <tr>
line 790 column 13 - Warning: missing <tr>
line 793 column 74 - Warning: <style> isn't allowed in <td> elements
line 793 column 9 - Info: <td> previously mentioned
line 800 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 802 column 9 - Warning: missing <tr>
line 820 column 13 - Warning: missing <tr>
line 823 column 74 - Warning: <style> isn't allowed in <td> elements
line 823 column 9 - Info: <td> previously mentioned
line 829 column 17 - Warning: missing <tr>
line 829 column 17 - Warning: discarding unexpected <table>
line 832 column 35 - Warning: missing <tr>
line 832 column 98 - Warning: unescaped & or unknown entity "&page"
line 832 column 132 - Warning: unescaped & or unknown entity "&page"
line 832 column 166 - Warning: unescaped & or unknown entity "&page"
line 832 column 200 - Warning: unescaped & or unknown entity "&page"
line 832 column 50 - Warning: missing </font> before </td>
line 832 column 235 - Warning: missing </font> before </table>
line 834 column 35 - Warning: missing <tr>
line 834 column 50 - Warning: missing </font> before </td>
line 834 column 139 - Warning: missing </font> before </table>
line 836 column 17 - Warning: discarding unexpected </textarea>
line 836 column 28 - Warning: discarding unexpected </form>
line 836 column 35 - Warning: discarding unexpected </embed>
line 836 column 43 - Warning: discarding unexpected </noembed>
line 836 column 53 - Warning: discarding unexpected </noscript>
line 836 column 64 - Warning: discarding unexpected </noembed>
line 836 column 74 - Warning: discarding unexpected </embed>
line 836 column 82 - Warning: discarding unexpected </table>
line 836 column 90 - Warning: discarding unexpected </table>
line 838 column 9 - Warning: missing </font> before <table>
line 850 column 25 - Warning: discarding unexpected </font>
line 859 column 58 - Warning: discarding unexpected </font>
line 837 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 160 column 11 - Warning: <img> lacks "alt" attribute
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 194 column 11 - Warning: <img> lacks "alt" attribute
line 195 column 22 - Warning: <img> lacks "alt" attribute
line 195 column 63 - Warning: <img> lacks "alt" attribute
line 195 column 112 - Warning: <img> lacks "alt" attribute
line 195 column 162 - Warning: <img> lacks "alt" attribute
line 196 column 11 - Warning: <img> lacks "alt" attribute
line 206 column 15 - Warning: <img> lacks "alt" attribute
line 222 column 11 - Warning: <img> lacks "alt" attribute
line 223 column 22 - Warning: <img> lacks "alt" attribute
line 223 column 63 - Warning: <img> lacks "alt" attribute
line 223 column 112 - Warning: <img> lacks "alt" attribute
line 223 column 162 - Warning: <img> lacks "alt" attribute
line 224 column 11 - Warning: <img> lacks "alt" attribute
line 234 column 15 - Warning: <img> lacks "alt" attribute
line 243 column 202 - Warning: <img> lacks "alt" attribute
line 253 column 11 - Warning: <img> lacks "alt" attribute
line 254 column 22 - Warning: <img> lacks "alt" attribute
line 254 column 63 - Warning: <img> lacks "alt" attribute
line 254 column 112 - Warning: <img> lacks "alt" attribute
line 254 column 162 - Warning: <img> lacks "alt" attribute
line 255 column 11 - Warning: <img> lacks "alt" attribute
line 265 column 15 - Warning: <img> lacks "alt" attribute
line 284 column 11 - Warning: <img> lacks "alt" attribute
line 285 column 22 - Warning: <img> lacks "alt" attribute
line 285 column 63 - Warning: <img> lacks "alt" attribute
line 285 column 112 - Warning: <img> lacks "alt" attribute
line 285 column 162 - Warning: <img> lacks "alt" attribute
line 286 column 11 - Warning: <img> lacks "alt" attribute
line 296 column 15 - Warning: <img> lacks "alt" attribute
line 351 column 1828 - Warning: <img> proprietary attribute value "absmiddle"
line 351 column 1828 - Warning: <img> lacks "alt" attribute
line 358 column 11 - Warning: <img> lacks "alt" attribute
line 359 column 22 - Warning: <img> lacks "alt" attribute
line 359 column 63 - Warning: <img> lacks "alt" attribute
line 359 column 112 - Warning: <img> lacks "alt" attribute
line 359 column 162 - Warning: <img> lacks "alt" attribute
line 360 column 11 - Warning: <img> lacks "alt" attribute
line 370 column 15 - Warning: <img> lacks "alt" attribute
line 377 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 383 column 1560 - Warning: <img> lacks "alt" attribute
line 397 column 11 - Warning: <img> lacks "alt" attribute
line 398 column 22 - Warning: <img> lacks "alt" attribute
line 398 column 63 - Warning: <img> lacks "alt" attribute
line 398 column 112 - Warning: <img> lacks "alt" attribute
line 398 column 162 - Warning: <img> lacks "alt" attribute
line 399 column 11 - Warning: <img> lacks "alt" attribute
line 409 column 15 - Warning: <img> lacks "alt" attribute
line 416 column 737 - Warning: <div> anchor "shiningwing-post" already defined
line 427 column 11 - Warning: <img> lacks "alt" attribute
line 428 column 22 - Warning: <img> lacks "alt" attribute
line 428 column 63 - Warning: <img> lacks "alt" attribute
line 428 column 112 - Warning: <img> lacks "alt" attribute
line 428 column 162 - Warning: <img> lacks "alt" attribute
line 429 column 11 - Warning: <img> lacks "alt" attribute
line 439 column 15 - Warning: <img> lacks "alt" attribute
line 446 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 460 column 11 - 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 479 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 494 column 11 - Warning: <img> lacks "alt" attribute
line 495 column 22 - Warning: <img> lacks "alt" attribute
line 495 column 63 - Warning: <img> lacks "alt" attribute
line 495 column 112 - Warning: <img> lacks "alt" attribute
line 495 column 162 - Warning: <img> lacks "alt" attribute
line 496 column 11 - Warning: <img> lacks "alt" attribute
line 506 column 15 - Warning: <img> lacks "alt" attribute
line 513 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 513 column 783 - Warning: <img> proprietary attribute value "absmiddle"
line 513 column 783 - Warning: <img> lacks "alt" attribute
line 523 column 11 - Warning: <img> lacks "alt" attribute
line 524 column 22 - Warning: <img> lacks "alt" attribute
line 524 column 63 - Warning: <img> lacks "alt" attribute
line 524 column 112 - Warning: <img> lacks "alt" attribute
line 524 column 162 - Warning: <img> lacks "alt" attribute
line 525 column 11 - Warning: <img> lacks "alt" attribute
line 535 column 15 - Warning: <img> lacks "alt" attribute
line 542 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 542 column 844 - Warning: <img> proprietary attribute value "absmiddle"
line 542 column 844 - Warning: <img> lacks "alt" attribute
line 554 column 11 - Warning: <img> lacks "alt" attribute
line 555 column 22 - Warning: <img> lacks "alt" attribute
line 555 column 63 - Warning: <img> lacks "alt" attribute
line 555 column 112 - Warning: <img> lacks "alt" attribute
line 555 column 162 - Warning: <img> lacks "alt" attribute
line 556 column 11 - Warning: <img> lacks "alt" attribute
line 566 column 15 - Warning: <img> lacks "alt" attribute
line 573 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 587 column 11 - Warning: <img> lacks "alt" attribute
line 588 column 22 - Warning: <img> lacks "alt" attribute
line 588 column 63 - Warning: <img> lacks "alt" attribute
line 588 column 112 - Warning: <img> lacks "alt" attribute
line 588 column 162 - Warning: <img> lacks "alt" attribute
line 589 column 11 - Warning: <img> lacks "alt" attribute
line 599 column 15 - Warning: <img> lacks "alt" attribute
line 606 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 606 column 939 - Warning: <img> proprietary attribute value "absmiddle"
line 606 column 939 - Warning: <img> lacks "alt" attribute
line 606 column 992 - Warning: <img> proprietary attribute value "absmiddle"
line 606 column 992 - Warning: <img> lacks "alt" attribute
line 606 column 1045 - Warning: <img> proprietary attribute value "absmiddle"
line 606 column 1045 - Warning: <img> lacks "alt" attribute
line 616 column 11 - Warning: <img> lacks "alt" attribute
line 617 column 22 - Warning: <img> lacks "alt" attribute
line 617 column 63 - Warning: <img> lacks "alt" attribute
line 617 column 112 - Warning: <img> lacks "alt" attribute
line 617 column 162 - Warning: <img> lacks "alt" attribute
line 618 column 11 - Warning: <img> lacks "alt" attribute
line 628 column 15 - Warning: <img> lacks "alt" attribute
line 635 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 635 column 834 - Warning: <img> proprietary attribute value "absmiddle"
line 635 column 834 - Warning: <img> lacks "alt" attribute
line 637 column 1077 - Warning: <img> lacks "alt" attribute
line 647 column 11 - Warning: <img> lacks "alt" attribute
line 648 column 22 - Warning: <img> lacks "alt" attribute
line 648 column 63 - Warning: <img> lacks "alt" attribute
line 648 column 112 - Warning: <img> lacks "alt" attribute
line 648 column 162 - Warning: <img> lacks "alt" attribute
line 649 column 11 - Warning: <img> lacks "alt" attribute
line 659 column 15 - Warning: <img> lacks "alt" attribute
line 666 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 673 column 1334 - Warning: <img> proprietary attribute value "absmiddle"
line 673 column 1334 - Warning: <img> lacks "alt" attribute
line 685 column 11 - Warning: <img> lacks "alt" attribute
line 686 column 22 - Warning: <img> lacks "alt" attribute
line 686 column 63 - Warning: <img> lacks "alt" attribute
line 686 column 112 - Warning: <img> lacks "alt" attribute
line 686 column 162 - Warning: <img> lacks "alt" attribute
line 687 column 11 - Warning: <img> lacks "alt" attribute
line 697 column 15 - Warning: <img> lacks "alt" attribute
line 704 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 714 column 11 - Warning: <img> lacks "alt" attribute
line 715 column 22 - Warning: <img> lacks "alt" attribute
line 715 column 63 - Warning: <img> lacks "alt" attribute
line 715 column 112 - Warning: <img> lacks "alt" attribute
line 715 column 162 - Warning: <img> lacks "alt" attribute
line 716 column 11 - Warning: <img> lacks "alt" attribute
line 726 column 15 - Warning: <img> lacks "alt" attribute
line 733 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 743 column 11 - Warning: <img> lacks "alt" attribute
line 744 column 22 - Warning: <img> lacks "alt" attribute
line 744 column 63 - Warning: <img> lacks "alt" attribute
line 744 column 112 - Warning: <img> lacks "alt" attribute
line 744 column 162 - Warning: <img> lacks "alt" attribute
line 745 column 11 - Warning: <img> lacks "alt" attribute
line 755 column 15 - Warning: <img> lacks "alt" attribute
line 762 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 762 column 766 - Warning: <img> lacks "alt" attribute
line 774 column 11 - Warning: <img> lacks "alt" attribute
line 775 column 22 - Warning: <img> lacks "alt" attribute
line 775 column 63 - Warning: <img> lacks "alt" attribute
line 775 column 112 - Warning: <img> lacks "alt" attribute
line 775 column 162 - Warning: <img> lacks "alt" attribute
line 776 column 11 - Warning: <img> lacks "alt" attribute
line 786 column 15 - Warning: <img> lacks "alt" attribute
line 793 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 804 column 11 - Warning: <img> lacks "alt" attribute
line 805 column 22 - Warning: <img> lacks "alt" attribute
line 805 column 63 - Warning: <img> lacks "alt" attribute
line 805 column 112 - Warning: <img> lacks "alt" attribute
line 805 column 162 - Warning: <img> lacks "alt" attribute
line 806 column 11 - Warning: <img> lacks "alt" attribute
line 816 column 15 - Warning: <img> lacks "alt" attribute
line 823 column 739 - Warning: <div> anchor "shiningwing-post" already defined
line 844 column 25 - Warning: <img> lacks "alt" attribute
line 849 column 267 - Warning: <img> lacks "alt" attribute
line 147 column 139 - Warning: trimming empty <font>
line 149 column 235 - Warning: trimming empty <font>
line 829 column 17 - Warning: trimming empty <tr>
line 832 column 235 - Warning: trimming empty <font>
line 834 column 139 - Warning: trimming empty <font>
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 211 column 27 - Warning: <nobr> is not approved by W3C
line 239 column 27 - Warning: <nobr> is not approved by W3C
line 270 column 27 - Warning: <nobr> is not approved by W3C
line 301 column 27 - Warning: <nobr> is not approved by W3C
line 375 column 27 - Warning: <nobr> is not approved by W3C
line 414 column 27 - Warning: <nobr> is not approved by W3C
line 444 column 27 - Warning: <nobr> is not approved by W3C
line 477 column 27 - Warning: <nobr> is not approved by W3C
line 511 column 27 - Warning: <nobr> is not approved by W3C
line 540 column 27 - Warning: <nobr> is not approved by W3C
line 571 column 27 - Warning: <nobr> is not approved by W3C
line 604 column 27 - Warning: <nobr> is not approved by W3C
line 633 column 27 - Warning: <nobr> is not approved by W3C
line 664 column 27 - Warning: <nobr> is not approved by W3C
line 702 column 27 - Warning: <nobr> is not approved by W3C
line 731 column 27 - Warning: <nobr> is not approved by W3C
line 760 column 27 - Warning: <nobr> is not approved by W3C
line 791 column 27 - Warning: <nobr> is not approved by W3C
line 821 column 27 - Warning: <nobr> is not approved by W3C
Info: Document content looks like HTML5
Info: No system identifier in emitted doctype
Tidy found 329 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