HTML5
Этот тег определяет таблицу.
<!DOCTYPE html>
<
html
>
head
meta
charset
=
"utf-8"
/>
title
>New Page</
script
type
"text/javascript"
src
"https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"
></
</
body
div
table
caption
>The Present Indefinite Tense</
colgroup
col
span
"3"
width
"100"
"50"
"200"
thead
tr
th
colspan
"4"
>question</
"2"
>positive</
>negative</
tbody
td
rowspan
>Do</
>I</
"7"
>see</
>?</
>do not (don't)</
>you</
>You</
>we</
>We</
>they</
>They</
>Does</
>he</
>He</
>see<
b
>s</
>does not (doesn't)</
>she</
>She</
>it</
>It</
tfoot
>вопросительная форма</
>утвердительная форма</
>отрицательная форма</
$(document).ready(function () {
$("*").css("margin", "0").css("padding", "0");
$("div").css({ "width": "950", "height": "272", "position": "absolute", "left": "50%", "top": "50%", "margin-left": "-475px", "margin-top": "-136px", "background-color": "#EEFCCD"});
$("table").css("border-collapse", "collapse").css("border", "solid 1px").css("font-size", "20px");
$("th").css("border-collapse", "collapse").css("border", "solid 1px");
$("td").css("border-collapse", "collapse").css("border", "solid 1px").css("vertical-align", "middle").css("text-align", "center");
});