HTML not executing

Status
Not open for further replies.

yunothen

New Member
Messages
4
Reaction score
0
Points
1
I have no clue what I did wrong ;-; I've only ever coded jcink before, which is pretty easy and not file involving. I dont know what I'm missing but the HTML wont execute. It just shows up as the html input rather than how it should look. http://yunowrites.x10host.com/Stories_list/
 

yunothen

New Member
Messages
4
Reaction score
0
Points
1
How can I get the CSS page to transfer to the html? <link> isn't working. :/
 

antonioj

New Member
Messages
17
Reaction score
0
Points
1
between the within the <head> and </head>tags put <style type="text/css">
copy the coding from the style sheet and paste after the previously mentioned tag
close with </style>
 

yunothen

New Member
Messages
4
Reaction score
0
Points
1
Well, I mean, I did that but I'd rather not have the clutter, which is the point in separate style sheets to begin with. v.v
I'd really appreciate a response on how to make it work, I know it looks fine as it is but I could really use the external style sheets. It's not going to stay that tiny coding forever. I kept it tiny because i couldn't get the style sheet to work.
 

AngusThermopyle

Active Member
Messages
319
Reaction score
52
Points
28
1. Create a directory in public_html and call it 'css' -- all lowercase, no caps
2. put your css file there (from the link you have, I assume it is called index.css)
3. You currently have the line
HTML:
<link href="/home/yunowrit/public_public/CSS/index.css" rel="stylesheet" />
in your page.
Edit to be
HTML:
<link href="/css/index.css" rel="stylesheet" />
4. Save
5. Clear your browser cache and visit your page.
 
Status
Not open for further replies.
Top