/* CSS Document */
@font-face {
    font-family: 'myFirstFont'; /*a name to be used later*/
    src: url('http://sxs.ro/larissa.ttf'); /*URL to font*/
}
Then, trivially, to use the font on a specific element:

.classname {
    font-family: 'YourFontName';
}

body {
  background-image: url('/img/spirala.png');
   	background-repeat:no-repeat;
   	background-size:contain;
   	min-height:100%
	margin:0;
}
html {height:100%;

} 

#container {
	float:left;
	top:0
	left:0;
	width: 100%;
  
}
#marginaStanga {
	float:left;
	background-color:#EB162D;
	min-height:100%;
	min-width:15px
}


#scris {
	max-height:25%;
	max-width:45%;
	position: fixed;
    bottom: 0;
    right: 0;
	z-index: -950;
}
#logo {
	position: fixed;
    top: 0;
    right: 0;
	z-index: -950;
}


h1 {
	color:red;
}

#email {
	position: fixed;
	top:40%;
	left: 45%;
	font-family:larissa
}

span.reverse {
  unicode-bidi: bidi-override;
  direction: rtl;
}

#divcentrat {
	margin: auto;
    width: 70%;
     padding: 10px;
	/*background-color:rgba(0, 0, 0, 0.7);*/
	background-color:white;
	box-shadow: 10px 10px 8px 10px #888888;
	min-height:95%;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
}