Languages

Menu
Sites
Language
What the default font-family in web app

Hi All

I'm developing a web app (use html and jquery) for tizen

I want to know the default font-family on tizen

and what else font-family can I choose to use them?

BR,

Tattoo.

Edited by: Brock Boland on 17 Mar, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

5 Replies
Vineet Tiwari
Hi Tattoo wu, Default font-family on tizen: Helvetica, Arial, sans-serif As of now we don't have much information about other font family. We will get back to you soon if we will get enough information. Thanks, Vineet Tiwari
tattoo wu
Thanks!
Faison NP

How can i get default fonts from the tizen or how can i use a new font in web apps. Please help

konduri sai swathi

Hi,

Try the below code :

CSS :

div {
    font-family: myFirstFont;
	color: #FF99CC;
	background-color: #853385;
}

@font-face {
	font-family: myFirstFont;
	src: url(../NewRocker-Regular.otf);
}

HTML :

<div>Hello World!</div>

You can download fonts from this link and include in your peoject folder and use it in the code like above : http://www.fontsquirrel.com/fonts/list/find_fonts?filter%5Bclassification%5D=display&filter%5Bfamily_size%5D=1&filter%5Bdownload%5D=all&sort=a2z

Faison NP

konduri sai swathi, Thanks :)