Hi, my name is Daniel Brodin, and these are my notes

This is a collection of notes about web development. They are mostly made for me to remember things I find interesting, but also to express my thoughts and push myself in having to learn and go deeper in certain subjects.

If you have found your way here you are however welcome to stay and read as much as you like (not that I would be able to stop you anyway) :)

If you would like to contact me, here's how:

HTML snippet

Snippet for starting a html project with style.css, global.js and jquery 1.7 already linked in.

<!DOCTYPE html>
<html lang="">
	<head>
		<meta charset="utf-8">
		<title></title>
		<link rel="stylesheet" type="text/css" href="css/style.css">
		<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
	</head>
	<body>
		
		<script type="text/javascript" src="js/global.js"></script>
	</body>
</html>