diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..f673a71 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5502 +} \ No newline at end of file diff --git a/Amazon.jpeg b/Amazon.jpeg new file mode 100644 index 0000000..d4752f5 Binary files /dev/null and b/Amazon.jpeg differ diff --git a/Microsoft.png b/Microsoft.png new file mode 100644 index 0000000..4ecf540 Binary files /dev/null and b/Microsoft.png differ diff --git a/index.html b/index.html index e69de29..f1608ca 100644 --- a/index.html +++ b/index.html @@ -0,0 +1,29 @@ + + + + + + + + Basic Data Tables + + + + + + + + + + + + + + + + +
LogoCompanyPhoneWebsite
Microsoft0800 200 55 88go to Microsoft
Amazon0800 100 38 44go to Amazon
+ + + + \ No newline at end of file diff --git a/style.css b/style.css index e69de29..648743d 100644 --- a/style.css +++ b/style.css @@ -0,0 +1,25 @@ +body { + + background-color: white; +} + +table { + + border: 5px solid; + table-layout: fixed; +} + +th, td { + + border-radius: 1px; + border: 1px solid; + width: 800px; + table-layout: fixed; + +} + +td, th { + + padding: 0.5em; + text-align: center; +}