27

I am currently trying to link normalize.css but its not working (using socket an express)

html
        head
                title= "Real time web chat"
                link(href='/css/normalize.css')
                script(src='/chat.js')
                script(src='/socket.io/socket.io.js')
                script(src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js')
        body
                #content(style='width: 100%; height: 600px; margin: 0 0 20px 0; border: solid 1px #999; overflow-y: scroll;')
                .controls
                        | Name: 
                        input#name(style='width:350px;')

                        input#field(style='width:350px; display: inline; margin-left -90px;')
                        input#send(type='button', value='send')
Szymon
  • 42,577
  • 16
  • 96
  • 114
Swat Designz
  • 283
  • 1
  • 3
  • 5

1 Answers1

54

You need rel

link(href='/css/normalize.css', rel='stylesheet')
Khanh Nguyen
  • 11,112
  • 10
  • 52
  • 65