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

tasked completed #4

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5502
}
Binary file added Amazon.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Microsoft.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Basic Data Tables</title>
</head>
<body>
<table>
<thead>

<th>Logo</th>
<th>Company</th>
<th>Phone</th>
<th>Website</th>

</thead>

<tbody>
<tr><td><a href="https://www.microsoft.com/"><img src="/Microsoft.png"></a></td><td>Microsoft</td><td>0800 200 55 88</td><td><a href="https://www.microsoft.com/">go to Microsoft</a></td></tr>
<tr><td><a href="https://www.amazon.de/"></a><img src="/Amazon.jpeg"></a></td><td>Amazon</td><td>0800 100 38 44</td><td><a href="https://www.amazon.de/">go to Amazon</a></td></tr>
</tbody>
</table>


</body>
</html>
25 changes: 25 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -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;
}