diff --git a/index.html b/index.html index d88015d..0dc461f 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,63 @@ + Exercise 3 + + +

Daftar Planet

+ + + + + + + + + + + + + +
First NameLast NamePoints
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..dc5b5c0 --- /dev/null +++ b/style.css @@ -0,0 +1,25 @@ +table { + border-collapse: collapse; + width: 100%; +} + +th { + background-color: #4CAF50; + color: white; + } + +th, td { + padding: 8px; + text-align: left; + border-bottom: 1px solid #ddd; +} + +#input { + width: 95%; + font-size: 16px; + padding: 12px 20px; + box-sizing: border-box; + margin-bottom: 12px; +} + +tr:hover {background-color:#f5f5f5;} \ No newline at end of file