diff --git a/casr-logbook.cabal b/casr-logbook.cabal
--- a/casr-logbook.cabal
+++ b/casr-logbook.cabal
@@ -1,5 +1,5 @@
 name:               casr-logbook
-version:            0.0.11
+version:            0.0.12
 license:            OtherLicense
 license-file:       LICENSE
 author:             Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,7 @@
+0.0.12
+
+* Fix exam output for HTML.
+
 0.0.11
 
 * Fix build to export `FlightEntry`.
diff --git a/src/Data/Aviation/Casr/Logbook/ExamEntry.hs b/src/Data/Aviation/Casr/Logbook/ExamEntry.hs
--- a/src/Data/Aviation/Casr/Logbook/ExamEntry.hs
+++ b/src/Data/Aviation/Casr/Logbook/ExamEntry.hs
@@ -51,19 +51,35 @@
       , "<li class=\"date\">"
       , html date
       , "</li>"
-      , "<li class=\"delegate\">"
-      , html dn
-      , " ("
-      , html dr
-      , ")"
-      , "</li>"
+      , concat
+        [
+          "<span class=\"heading delegateheading\">"
+        , "Delegate"
+        , "</span>"
+        , ": "
+        , "<span class=\"info delegateinfo\">"
+        , html dn
+        , " ("
+        , html dr
+        , ")"
+        , "</span>"
+        ]
+      , "</li>"      
       , "<li class=\"delegatearn\">"
       , html da
-      , "</li>"
       , "<li class=\"examresult\">"
-      , html r
-      , "/"
-      , html m
+      , concat
+        [
+          "<span class=\"heading resultheading\">"
+        , "Result"
+        , "</span>"
+        , ": "
+        , "<span class=\"info resultinfo\">"
+        , html r
+        , "/"
+        , html m
+        , "</span>"
+        ]
       , "</li>"
       , "</ul>"
       ]
