153

After years in frontend, I still have to google how to link css and script files in html.

Comments
  • 6
    emmet helps

    type "link" and press tab
  • 8
    @heyheni I couldn't even breathe without Emmet, but I'm too dumb to memorize the keyword that has to come after :
  • 4
    If you wanna know it for CSS, I memorized it for CSS, try to memorize the linking scheme in general:
    <head>
    ...
    <link rel="stylesheet" type="text/css" href="pathto/file.css">
    </head>
  • 5
    I can relate I feel like I am constantly looking up CSS docs...
  • 3
    Is there anything wrong with that ?
  • 6
    If you look it up next time, don't c&p it! Type it! I rarely c&p or use code completion while i learn a new language. It slows you down first but speeds you up in the long run.
  • 1
  • 1
    I wish I could ++ this a thousand times
  • 1
    Ikr. Why r they difficult to remember?
Add Comment