Skip to content
This repository was archived by the owner on Jul 19, 2019. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update index.html
I think the doctype tag thing is funny... but it is confusing especially since this is a tutorial.
Adding closing </html>
  • Loading branch information
lfox91 authored Dec 7, 2016
commit 096705beffebdb52b686d6d35a08ae49998b350b
13 changes: 9 additions & 4 deletions lessons/05-active-links/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
<!doctype html public "storage">
<!DOCTYPE html>
<html>
<meta charset=utf-8/>
<meta charset="utf-8">
<link rel="stylesheet" href="index.css">
<title>My First React Router App</title>
<div id=app></div>
<script src="bundle.js"></script>
<body>
<div id="app"></div>
<script src="bundle.js">
</script>
</body>
</html>