05.06.2015, 12:50
I'm actually quite impressed that the navigation is actually a proper list styled with CSS. I half expected some crappy Photoshoped images. I'm horrible at lay-outing and designing, so I'll just give you some tips on the technical aspects.
Include the doctype and the charset and specify a language. Furthermore, while loading Javascript in the head tag is not wrong per se, it is often advised to load any Javascript just before </body> to speed up loading. Outline should look like:
By the way, linear-gradient is supported in all major modern browsers, so you can get rid of the prefixes (-moz, -webkit, etc).
Include the doctype and the charset and specify a language. Furthermore, while loading Javascript in the head tag is not wrong per se, it is often advised to load any Javascript just before </body> to speed up loading. Outline should look like:
HTML Code:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> </head> <body> <!-- body code goes here --> <script src = "JS/jquery.js"></script> </body> </html>