HOME | DD

Published: 2013-01-24 03:09:27 +0000 UTC; Views: 157285; Favourites: 3245; Downloads: 0
Redirect to original
Description
Throughout my tutorials and news articles on deviantART I use a variety of methods to help format my text and insert images. It’s becoming quite common that people ask me how I have achieved one or more of these effects, so I thought that I would write a quick guide as it allows me to quickly and clearly pass on the information each time.This tutorial covers basic HTML tags available on deviantART, as well as a number of site specific features. It is mainly designed for those unfamiliar with HTML or those new to the site, as none of it is particularly complicated once you find the necessary code and understand how to use it.
Basic text formatting
The majority of the text formatting on dA is done through HTML tags. A ‘tag’ has angular brackets with some text inside which corresponds with a certain function. Each command has an ‘opening tag’ (e.g <b>) which says when the formatting should start, and a closing tag (e.g. ) which states when it should finish.
In some cases there may be multiple tags which do the same formatting. You can find these instances grouped together.
<b>Bold text</b> ➜ Bold Text
<strong>Bold text</strong> ➜ Bold Text
<u>Underlined text</u> ➜ Underlined Text
<i>Italicized text</i> ➜ Italicized text
<em>Italicized text</em> ➜ Italicized text
<s>Striked text</s> ➜ Striked text
<strike>Striked text</strike> ➜ Striked text
Text sizes
The following codes can be used to make the text larger. These codes can only work in certain areas of dA. For example, they cannot be used in normal comments. They can however be used in journals and the artist comments sections of deviations.
<h1>Large (Header 1) Text</h1> ➜
Large (Header 1) Text
<h2>Large (Header 2) Text</h2> ➜
Large (Header 2) Text
<h3>Medium (Header 3) Text</h3> ➜
Medium (Header 3) Text
There are also a few options to make the text smaller. All change the text to the same size, but differ in their positioning within a line of text. Superscript will place it at the top the line of text, where as Subscript will align it with the bottom. Small will keep it in the normal position and simply shrink the text size.
<small>Small text</small> ➜ Small text
<sup>Superscript text</sup> ➜ Superscript text
<sub>Subscript text</sub> ➜ Subscript text
If you want even smaller text, you can add next multiple tags inside one of another. For example:
<sub><sub><sub>This text is even smaller</sub></sub></sub> ➜ This text is even smaller
Text positions
HTML also allows you to alter the position of text making it line up with the left, right or centre of the page. In each case the basic code is the same, and you simply swap the word show in bold to achieve the designed alignment.
<div align="Option">Text to be aligned
The for 'option's are:
- left
- center
- right
For example:
Right aligned text
Center aligned text
Left aligned text
Notes:
- This HTML only works in limited places on dA such as journals and custom boxes. It doesn't work in normal comments, the dAmn chatrooms etc.
- The option to centralise text uses the American spelling of 'Center'. For those that use the British spelling, this is a common mistakes which stops the code working.
Multiple formatting
It is possible to apply multiple formats to a single piece of text. This is achieved by nesting the tags inside each other. For example
<b><u>Bold and Underlined text</u></b> ➜ Bold and Underlined text
The two sets of formatting don't have to start at the same time. For example, you can have all the text in bold, and only the end text underlined.
<b>Bold and <u>Underlined text</u></b> ➜ Bold and Underlined text
When using multiple tags you have to look out for the order you place the closing tags in. Closing an outer tag, will also end any open tags which are nested inside of it. This may close the tag prematurely. For example, you can't have all of the text below underlined. By closing the bold tag, the underlined tage is also stopped.
<b><u>Sample</b> text</u> ➜ Sample text
To prevent this issue, you may need to re-order the tags. For example:
<u><b>Sample</b> text</u> ➜ Sample text
Further HTML
deviantART supports a number of other HTML tags which can be used to help format text within deviations, comments and journals. However, as these are generally less used I have left them out of this tutorial.
If you wish to find out more then you can find an official FAQ on the subject: help.deviantart.com/104/
Inserting links
Using a mixture of HTML and deviantART codes it is possible to link to web pages and dA profiles using the following methods. In all cases, the bold text should be replaced with the appropriate link or text you wish to insert.
:devsynfull: ➜ Synfull
:iconsynfull: ➜
<a href="http://www.facebook.com">Text link should be attached to ➜ Text link should be attached to
This method can be used to link to a dA profiles, but should only really be used if you want custom text to appear instead of the deviant’s username. If just the username is required then you should use the :devusername: version shown above.
<a href="http://synfull.deviantart.com">My profile ➜ My profile
Inserting images
There a a number of methods which can be used to insert images into comments, journals and other sections of dA. For information on using thumbcodes, the emote legend etc, please see this tutorial:
However, one of the most useful html codes allows you to display any image. This could be one that is on dA, or hosted elsewhere (e.g. photobucket). Note: This cannot be used to insert pictures into artist comments, but will work in journals and on your profile page.
<img src="DirectLinkToImage" />
The ’DirectLinkToImage’ part should be replaced with the URL (web page address) of the image. However, you need to use the direct link to the image.
The direct links will lead to a web page where the image is shown on a plain background. These links can be acquired by right clicking on the image and selecting 'copy image URL/Location/Address'. (Dependant on web browser). For example:
<img src="http://i971.photobucket.com/albums/ae198/syns-stuff/Avatars/63.png" />
This code can’t actually be used within the artist comments or regular comments. However, you can see examples in this journal .
Displaying code
From time to time it is useful to display the actual code that you are typing and prevent deviantART from formatting. For example, each time I have explained how a code works above I have given a sample piece of code which normally would produce specified effects. This is much better than adding in spaces at it allows people to see exactly how something should look.
To stop a piece of code from formatting, simply place a complete set of HTML tags (e.g. ) somewhere inside the formatting. From a coding point of view, it breaks the code/tags up so dA does not register that one has actually been used. For example:
<<u></u>b>Sample Text<<u></u>/b> ➜ <b>Sample Text</b>
:<b></b>devsynfull: ➜ :devsynfull:
:<b></b>iconsynfull: ➜ :iconsynfull:
Alternatively, in the cases where a colon is used (i.e. :dev: and :icon: links) you can replace one of the colons with the ASCII code for a colon : When posted in a comment or journal it will appear as a colon, but won't cause the dev or icon links to be created.
:devsynfull: ➜ :devsynfull:
Other Tutorials
Related content
Comments: 1258
Kertra36 [2022-10-07 11:36:30 +0000 UTC]
👍: 0 ⏩: 0
Kertra36 [2022-10-07 11:35:31 +0000 UTC]
👍: 0 ⏩: 1
Bluenbluey [2022-04-04 15:57:09 +0000 UTC]
👍: 0 ⏩: 0
AleshaM [2021-10-23 02:50:20 +0000 UTC]
👍: 0 ⏩: 1
Xogroroth [2021-10-16 00:15:00 +0000 UTC]
👍: 0 ⏩: 1
UNSC-spartan112 [2021-06-29 08:39:20 +0000 UTC]
👍: 0 ⏩: 1
Synfull In reply to UNSC-spartan112 [2021-06-29 10:25:30 +0000 UTC]
👍: 0 ⏩: 0
LordofFantasy666 [2020-09-21 13:16:42 +0000 UTC]
👍: 0 ⏩: 1
Synfull In reply to LordofFantasy666 [2020-11-22 19:19:29 +0000 UTC]
👍: 0 ⏩: 0
Whixy [2020-05-23 17:19:41 +0000 UTC]
👍: 0 ⏩: 1
wotawota [2020-05-08 09:44:38 +0000 UTC]
Yep, good old coding! I will miss it in new DA - it is not implemented in "My Bio"... (or do you know some trick?)
👍: 0 ⏩: 1
X-Tibro [2020-04-24 00:45:31 +0000 UTC]
👍: 0 ⏩: 1
HorribleInsect [2020-04-07 16:15:00 +0000 UTC]
👍: 0 ⏩: 1
Synfull In reply to HorribleInsect [2020-04-09 00:30:10 +0000 UTC]
I can't say I have explorer Eclipse much, but I know a lot of the formatting isn't going to work on that version of the site so it wouldn't surprise me
👍: 0 ⏩: 0
Spirits0ng [2019-10-13 00:39:47 +0000 UTC]
Is there any way to get an image smaller? I tried using the way you made smaller text but it didn't work.
👍: 0 ⏩: 1
Synfull In reply to Spirits0ng [2019-10-24 23:30:37 +0000 UTC]
In some places you can add a height or width value to specify the size.
<img height="200px" src="link to image">
But this won't work in some places like comments
👍: 0 ⏩: 0
Parziivale [2019-09-21 07:45:34 +0000 UTC]
Do you happen to know what happened to Deviantart's image sourcing? It's super long now, doesn't even mention DA, and I don't understand what happened.
Example:
One of my stamps used to have an image link like this
https:// orig00.deviantart.net/5dd0/f/2018/097/d/3/willrequestsclosed_by_drazillion_dc8508u_by_parziivale-dc86jam.png
but now when i right click and copy it it looks like this:
https:// images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/fc29318a-2f7b-4b32-ada3-fc187abe55d2/dc86jam-a84cb2c1-4d16-4cc7-ba0e-f9d265de72da.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7InBhdGgiOiJcL2ZcL2ZjMjkzMThhLTJmN2ItNGIzMi1hZGEzLWZjMTg3YWJlNTVkMlwvZGM4NmphbS1hODRjYjJjMS00ZDE2LTRjYzctYmEwZS1mOWQyNjVkZTcyZGEucG5nIn1dXSwiYXVkIjpbInVybjpzZXJ2aWNlOmZpbGUuZG93bmxvYWQiXX0.rhb47uzKamZPM_yYPnJ3uDB8xobk4q8IKHa0MOQsQdM
Do you know why this is happening?
👍: 0 ⏩: 3
camilionkd In reply to Parziivale [2020-03-18 02:34:36 +0000 UTC]
Hi, not sure if this is still an issue for you, but there's a free website called bit.ly that you can shorten links with. [Ex link: https://bit.ly/31yZb6w].
👍: 0 ⏩: 1
Parziivale In reply to camilionkd [2020-03-18 02:44:37 +0000 UTC]
Is that going to work with an image source link as well for html?
👍: 0 ⏩: 1
camilionkd In reply to Parziivale [2020-03-18 07:40:47 +0000 UTC]
You mean if it's written like <img src="[bit.ly link]">? Yes.
👍: 0 ⏩: 1
Parziivale In reply to camilionkd [2020-03-18 08:00:07 +0000 UTC]
That’s so cool! I might have to try that, thank you!
👍: 0 ⏩: 1
Synfull In reply to Parziivale [2019-09-23 22:48:27 +0000 UTC]
👍: 0 ⏩: 1
Parziivale In reply to Synfull [2019-09-24 04:50:33 +0000 UTC]
Ugh and they couldn't have made the storage links less ugly???
👍: 0 ⏩: 0
marshmu In reply to Parziivale [2019-09-22 05:36:26 +0000 UTC]
its because wix bought deviantart & shifted sourcing to their own servers. thats why it has wix in the URL. so long & ugly haha
👍: 0 ⏩: 1
Parziivale In reply to marshmu [2019-09-22 07:21:21 +0000 UTC]
That's TERRIBLE. WHAT?
Who thought that was a good idea, it makes everything SO MUCH MORE ANNOYING too.
Thank you for this info it has made me happy to learn a thing and i would also like to go cry in a hole at this knowledge.
👍: 0 ⏩: 0
Spirits0ng [2019-08-25 22:01:06 +0000 UTC]
Thank's so much for making this tutorial! It's very helpful! Would you please tell me how to make dividers?
👍: 0 ⏩: 1
Synfull In reply to Spirits0ng [2019-09-01 09:22:57 +0000 UTC]
Do you mean the line? It's a single <hr> tag
👍: 0 ⏩: 1
Sparkling-Aurora [2019-08-25 10:33:14 +0000 UTC]
How do I center things on my BIO? I'm using the code but it doesn't seem to be working, I've trued putting it at the beginning and the end but nothing is happening! It always stays at the left.
👍: 0 ⏩: 1
Synfull In reply to Sparkling-Aurora [2019-08-28 19:09:38 +0000 UTC]
For some reason dA won't let you center the text in that widget
👍: 0 ⏩: 0
Bellalista [2019-08-17 08:35:53 +0000 UTC]
hi
how do you add thumbcodes and link member icon on the DA submission Description?
i'm getting curious
because i tried many ways to add a thumbcode in the description but nothing works
and how do you add the codes in the description aswell anyway?
i hope i didn't wasted your time for commenting this ^^'
👍: 0 ⏩: 1
Synfull In reply to Bellalista [2019-08-18 23:40:24 +0000 UTC]
You have to pay for a core membership to be able to use thumbcodes in the description for a deviation. You should however be able to use icos using the :iconusername: (e.g.:iconsynfull:) code.
👍: 0 ⏩: 0
| Next =>