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

initial commit #8

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
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 current-logo-600x338.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<table>
<tr>
<td>Logo</td>
<td>Company</td>
<td>Phone</td>
<td>Website</td>
</tr>
<tr>
<td>
<a href="https://www.microsoft.com"><img
src="./png-transparent-microsoft-azure-logo-microsoft-dynamics-microsoft-sql-server-microsoft-text-rectangle-logo.png"
alt="Logo"
/></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.com"><img src="./current-logo-600x338.png" alt="" /></a></td>
<td>Amazon</td>
<td>0800 100 38 44</td>
<td><a href="https://www.amazon.com">go to Amazon</a></td>
</tr>
</table>
</body>
</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
img {
width: 10rem;
}

table {
border: 4px solid;
}

tr, td {
border: 1px solid;
padding: .5rem;
}