:Kodular: Kodular HTML Tricks

Kodular HTML Tricks

Hey Koder, Good Afternoon In This Guide I Am Going To Show You Some HTML Tricks In :kodular: You Can Also Use This Trick In :appinventor: :appybuilder: :thunkable:

First Trick :- Make Underline To A Label

enable html formats in the designer property of a label
1

<u>{YOUR TEXT}</u> Write Your Label In This Format
2
This html code allows you to make underline under label

Second Trick :- Make Table In A Webviewer

enable html format on label properties

Add This Code In Label

<table border="5">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
  <tr>
    <td>John</td>
    <td>Doe</td>
    <td>80</td>
  </tr>
</table>

Output :-

Firstname Lastname Age
Jill Smith 50
Eve Jackson 94
John Doe 80

Third Trick :- HTML Heading

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>

output :
>

Heading 1

<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>

Fourth Trick :- Delete A Word

Use <del> tag for this
Example :

FIFTH TRICK: Add an emoji in a label

Untitled
OUTPUT:

You can add any emoji character in a label by entering the HTML decimal code.

For example:

:smile: is &#128516

:heart_eyes: is &#128525

:heartpulse: is &#128151

:joy: is &#128514

and so on…

You can easily find these HTML codes on the internet.
You can use win + . shortcut to see a box of emojis, that you can add in your apps.


SOME TRICKS WILL ADDED SOON

Special Thanks To @Peter And @ImranTariq To Give Me An Idea To Create This Guide

Thank You
Happy Koding

18 Likes

If you want to make a more elaborate guide why not show what html codes you can use in a label or textbox. You can edit this topic and change the title.

5 Likes

I have shown in the guide

There is more then underline. You can have italic, bold, superscript, subscript, change colors for instance. Then you would have made a great guide to point to when there is a question.

For now your guide is really small and what you have shown can also be found on the community.

6 Likes

Yes i agreed with you. I will also make tutorial about html tags used in label. Thanks for ur suggestion

Like i said, collect all possibilities here and edit your first post.

1 Like

Ok and Thanks. But i cant do this now i have not time now

@Peter is right you have to make a complete tutorial not just a underline, these are the code we are using already and if someone needs to se html then he needs a complete tutorial not just one code.

if you wanted to be highlighted in community then you have to give some time to community.

3 Likes

I have Added More Tricks

1 Like

Can an admin please make this topic a wiki?

I didn’t know that :crazy_face: thanks for telling
btw how about <br> or bold <b>, <i>, <del>, sth like that?
They are also possible

Why not try?

No, I mean I know them so I want the author to add it

2 Likes

Thanks For Your Suggetion I Have Implemented del tag in guide. We can make text bold and italic with built in functions of kodular creator therefore not added your other tags

1 Like

And that’s where you are thinking wrong. You should add them because this way you can make part of your label bold, italic, underlined, etc. And don’t forget subscriptand superscript. And that you can give part of the label a different color.

4 Likes

Definitely.

1 Like

@Vedang why have you added the wiki tag if this topic is not a wiki?

How to make a wiki?

This is not the question, but that you want to vary this within a text.

Btw, on the occasion, questions about text font size in HTML should also be clarified, see e.g. here:

What alternatives are there, eg like this:

<font color=red>normal text</font> or <big><font color=blue>big text</font></big> or
<small><small><font color=green>small text</font><small/><small/> or <big><big><big><big><font color=purple>bigger text</font></big></big></big></big>

grafik

6 Likes

shouldn’t it be </small> instead of <small/> (Idk much about HTML)

2 Likes