CSS Font Shittttt

VaginaMuncher

Chilling with me bitch Fiona
Mar 17, 2013
447
58
Hellur children<3

Basically my {body font-family: Raleway isn't working and is being a cunt.

I tried p{font etc, But still no work for me...


CODE:
Code:
<!DOCTYPE html>
<html>
<head>
<title>RyanRimmer - Home</title>
<link rel="stylesheet" type="text/css" href="/CSS/Common.css">
</head>

<body>
<!-- HEADER !-->
<div id="Header"></div>
<div id="Line"></div>
<!-- HEADER !-->
</body>
</head>
<div id="MainText">HEY</d
And css:
Code:
body {
background-color:#E9573F;
font-family:Raleway;
font-size:20px;
font-color:#99997f;
padding:0;
margin:0;}

li { list-style:none;float: right;padding: 0;}
ul { list-style-type: none;margin: 0;padding: 0;overflow: hidden; }
li a { text-decoration:none;color: white;display: block; padding: 14px 20px;}

#MainText {
font-family:Raleway;
font-size:60px;
font-color:white;}
 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,639
2,397
I don't recognise Raleway as a default computer font, upload the TTF file or whatever to and download those files.
 

Damon

Member
Aug 13, 2012
364
114
Do what @TrevorPhillips said and download the font. Then upload it to your web host and use the below code on your html.

Put this on html page..
HTML:
<style>
@font-face { font-family: Raleway; src: url('http://mydomain.com/raleway.ttf'); }
</style>
OR put this in css
@font-face { font-family: Raleway; src: url(' }
Remember to change the directory to your font.
 

Damon

Member
Aug 13, 2012
364
114
Just put
Code:
<link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
on your page. Its hosted by Google Fonts, so you dont need to upload it yourself.
 

Queef

Some people...
Jul 27, 2012
645
289
Everything you need to know about implementing the google font API into your code,



A list of the fonts google hosts

 

Users who are viewing this thread

Top