Skip to content
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 images/Auction2.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 images/auctionribbon.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 images/bidpadds.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 images/blk-wyt-facebook-instagram-logos.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 images/png-transparent-social-media-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 images/shaddow-logo-fb-twitter-instagram.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 images/socialicons.jfif
Binary file not shown.
Binary file added images/sociallogos2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ViT Brochure</title>
<link rel="stylesheet" href="/styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Space+Mono|Muli">
</head>
<body>
<div class="container">
<section class="block1">
<img class="logo" alt="ViT Logo" src="/images/VITlogo.png">
<hr>
<h1>Silent Auction</h1>
<hr>
<p>Join us for the annual <em>Vets-In-Tech</em> silent auction!</p>
<p><span>Date: XX/XX/XXXX</span><br><span>Time: 00:00 PM EST</span></p>
<img alt="photosOnTable" src="/images/Auction2.png">
</section>
<section class="block2">
<img alt="US flag" src="/images/americanFlag.png">
<h1>Contact Us</h1>
<p><span>Phone Number: </span><br><span>(123) 456-7890</span></p>
<p><span>Email: <br>john.smith@google.com</p>
<p>Address:<br>
1775 Army Navy Street<br>
Marine Corps, Air Force, USA 01230</p>
</section>
<section class="block3">
<h1>Follow Us On Social Media</h1>
<p><a href="#">Facebook</a><br><a href="#">Instagram</a><br><a href="#">Twitter</a></p>
<img alt="tree branch" src="/images/png-transparent-social-media-logo.png">
</section>
</div>
</body>
</html>
37 changes: 37 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
section{
padding: 20px;
text-align: center;

}
img {
display: block;
width: 40%;
margin-left: auto;
margin-right: auto;
border-radius: 5px;
}
h1{
font-family: "Space Mono", monospace;
}
p{
font-family: Muli, sans-serif;
}
.block1 h1{
font-weight: bold;
text-transform: uppercase;
}
.container{
border: 2px solid black;
display: flex;
justify-content: center;
padding: 10px;
}
.block2{
border-left: 3px dashed black;
border-right: 3px dashed black;
}
.block3 a{
line-height: 1.8;
text-decoration: none;
}
/*finished homework*/