Entry tags:
C.R.E.A.M
Coal ruins exchanges around me - spitey spitey fic y'all.
yuletide |
yuletide_admin | Writing Post
2021 Collection | 2021 App (bonus) | Letter Post
Sign-ups: Fri 15 Oct to Sat 23 Oct (Countdown)
Assignments out by: Mon 25 Oct
Default deadline: Sat 11 Dec
Assignment deadline: Sat 18 Dec
Reveals: Sat 25 Dec
Mini-Challenges:
Yuleporn | Make the Yuletide Gay | Jewltide | Three Turtle Doves
YuleBuilding | Two for One | Crueltide | Yuletunes | Yule Be First
YuleSwaps | IF | Wrapping Paper | Yumadrin | MultiLingYule
....and a Partridge in a Pear Tree!
Yuletide Discord for Hippos & Exchanges After Dark Discords for Namespace drama 18+ discussion. Google Group for PHs.
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
2021 Collection | 2021 App (bonus) | Letter Post
no subject
(Anonymous) 2021-10-19 09:27 pm (UTC)(link)What I do:
Intro
Html for Fandom Jumps
General Likes and DNWs
Fandom section 1 (ends with a "return to top" jump)
Fandom section 2 (ends with a "return to top" jump)
Fandom section 3 (ends with a "return to top" jump)
Signoff
And how I do the html is:
Each one of the fandom sections is set up under a different lj cut. Then for the fandom jumps html, I put:
<*a href="cutlink1address"*> (update the cut link for each section)
And for the back to top html, I put:
<*a href="letterlink">
(Take out asterisks, of course, those are in there to make it display in this comment properly)
no subject
(Anonymous) 2021-10-19 09:48 pm (UTC)(link)no subject
(Anonymous) 2021-10-19 10:06 pm (UTC)(link)<h1>like this</h1>
<h4>or this</h4>
can actually be better because things like screenreaders, autosummaries, and keyboard controls can parse them.no subject
(Anonymous) 2021-10-20 12:01 am (UTC)(link)no subject
(Anonymous) 2021-10-20 12:11 am (UTC)(link)For a longer write up, articles like the following can be helpful.
https://uxdesign.cc/semantic-html-the-foundation-of-web-accessibility-e5bbecad7c17
no subject
(Anonymous) 2021-10-20 12:15 am (UTC)(link)the "header" tags, instead, tell the software that this is a heading, and it should do with it what it does with a heading.
This means - people's journal styles, browser settings, and custom HTML will display it in a way that means "heading" to them, even if it's not the same colors or sizes you would have picked.
- devices like screenreaders can tell the people listening to them that "this is a header"
- devices to help people navigate through a page - like screenreaders, or special controls for people with limited dexterity - can let the user tell them to easily skip to the next heading.
- programs that try to actually parse the text can use the header tags to figure out the structure. For example there are programs that will try to generate an "outline" of a page, like an automatic table of contents, and they can use header tags to do this
Basically any time you want a section heading or title to stand out, it's better to use a header tag than messing with color/size/etc manually or just using bold an italic.
The header tags are numbered h1 and so on, you use them just like you would a Bold or Italic tag, and they look like this (it will vary based on page style, they look mostly red to me because I'm logged out and using DW basic):
Header 1
Header 2
Header 3
Header 4
Header 5