Skip to content
Snippets Groups Projects
Commit c33333b4 authored by Gustav Elmqvist's avatar Gustav Elmqvist
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
# Web Programming laborations
This repo contains the laborations in the course TDDD97 done by Gustav and Oliver.
\ No newline at end of file
<html>
<head>
<link href="client.css" type="text/css" rel="stylesheet">
<script src="client.js" type="text/javascript"></script>
<script src="serverstub.js" type="text/javascript"></script>
</head>
<body>
</body>
</html>
\ No newline at end of file
displayView = function() {
// the code required to display a view
};
window.onload = function() {
// code that is executed as the page is loaded.
// You shall put your own custom code here.
// window alert() is not allowed to be used in your implementation.
window.alert("Hello TDDD97!");
};
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment