Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix w3c validation errors, (xhtml 1.0 transitional) #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
13 changes: 8 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>letter thoughts</title>
<style type="text/css">
Expand Down Expand Up @@ -44,6 +45,7 @@
src="https://code.jquery.com/jquery-1.11.1.min.js">
</script>
<script type="text/javascript">
<!--
$(document).ready(function () {
$.getJSON( "data.json", function( data ) {
$.each(data, function(val) {
Expand All @@ -54,7 +56,7 @@
});
});
});

function findThought (thought) {
// This is very slow. It also keeps choosing new letters as you
// type a word, which is maybe not ideal.
Expand All @@ -72,6 +74,7 @@
$(candidates[Math.floor(Math.random() * candidates.length)]).addClass("highlight");
}
}
-->
</script>
</head>
<body>
Expand Down Expand Up @@ -107,9 +110,9 @@ <h2>about</h2>


<h2>physical</h2>
<div class="box"> <img src="wip-1.jpg" /> </div>
<div class="box"> <img src="wip-2.jpg" /> </div>
<div class="box"> <img src="finished.jpg" /> </div>
<div class="box"> <img src="wip-1.jpg" alt="letter graph start" /> </div>
<div class="box"> <img src="wip-2.jpg" alt="letter graph midway" /> </div>
<div class="box"> <img src="finished.jpg" alt="letter graph finished" /> </div>
<div style='text-align: right; padding: 5px;'>&#1606;</div>
</div>
</body>
Expand Down