16 cool HTML tricks by 90steens
<small> makes text smaller. The more <small> you use,the smaller it gets
<sup> makes text go up up up up
<sub> makes text go down down down down
<u> makes text underline
Y̷̷̛̤̫̜̖̱̞͜o͝͝͏̵̸̳̲͓͔̬͕̩͖̺ͅu̷̴̴̺̖̰͈̗̭̞͓̘̱̱͖̝̫ ̶̡͉̩͍̭͉̤̝̟̠́c̢̪̤͈̱̥̟̹̻̗͈̭͓̩̺̮̀̀͢͡a̸̛̛̫̹̜͚͖̜͍͎̥͟͝ͅǹ̢͖̫̥̩̳͟͜ͅ'̡̧͚̣̩̜͙͙͘͘t̷͚̭͙̯̮̬̰̕͢ ͡͡͏͈̲̭͖̙͕͖͙̝̼͈̹͍͇͎ͅͅͅb͞͏̧̠̰͔̺͔̜̟̬͙̺̺̳̞̙͈͡ͅé̫̣͍͉̼̗̗̰̩̗̺̪̠͍͓̝̺͘͟ ̀͠͏҉̬̫͔̤͈̗̬̫̦̠̮͔͉̭̥̭̫ͅͅB̡͈͓̫̥̬̲̮̲̲͖͔̳̠͚e̷͔̞̬͓̻͕̳̳̗̰͉̳͉̳̲͈̣̥͟y̠̙̦̞̝͍̠̥͚͘͞o̷̧͕̱̮̩̹͈͚͜͜n̢͎͈͎͍̻͍̬̲̲̥̯̫̘̱̕ͅc̝͖̰͎̀e̢̛̤̦̜̯̟͕͈̯̰͡ found here
go here for unicode symbols ▁ ▂ ▃ ▄ ▅ ▆ ▇ █ ▉ ▊ ▋
<b> makes text BOLD
<s> makes text
<font color="red"> makes text red.
NB: you can change from the color red to green, blue etc. and end the code with </font>
uʍop əpısdn ʇxəʇ əʞɐɯ oʇ əɹəɥ oƃ
txet sesrever oslA
<div style="background-color:red;display:inline-block;">
Adding background color to text
NB: you can change the color or use one of the color hex codes.<a href="https://www.google.com/"> This link will bring you to Google. NB: you can change the google link to any link you want to redirect you to that site.
<div style="border: 1px solid #000000; display: inline-block; padding: 5px 7px;">
Adds a border to your text
NB: you should end the code with a </div> tag.<div style="border: 3px dashed #FFFF00; display: inline-block; padding: 5px 7px;">
Adds a yellow dashed border around text
NB: you can change the color of the box by replacing the hex code "#FFFF000" with any one you want. you can find hex codes here. You can also change it from being "dashed" to
"solid"
or
"dotted"
in the code. Last but not least, you can change the size by changing the
"3px" to "5px" or more
NB: end all tags with a foward slash (/). eg. <div></div> in order for the code to work. If its a <div style="> end it with </div>
Post a Comment