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

websites in tables #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Binary file added image copy.png
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 image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 50 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!DOCTYPE html>

<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./style.css">
</head>
<body>

<table>
<thead>
<tr>
<th>
Logo
</th>
<th>Company</th>
<th>Phone</th>
<th>Website</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="https://www.microsoft.com/"><img src="image.png" alt="google"></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/"><img src="image copy.png" alt="Amazon"></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>
9 changes: 9 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
table {
border: 3px solid;
}
td, th {
border: 1px solid;
}
tr {
text-align: center;
}