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 Music/VetsInTechMusic.mp3
Binary file not shown.
101 changes: 101 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<!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>Document</title>
<link rel="stylesheet" href="./styles.css">
</head>

<body>
<section>

<article>
<p class="p1">
Follow Us On Social Media
</p>

<p class="p2">
Facebook
</br> Instagram
</br> Twitter
</p>

<div class="gallery">
<img src="./images/treeBranch.png" alt="treeBranch" width="400" height="250" >
</div>
</article>

<article>
<div class="gallery">
<div style="margin-top: 50px;">
<img src="./images/americanFlag.png" alt="americanFlag" width="430" height="250">
</div>
</div>

<p class="p3">
Contact Us
</p>

<p class="p4">
Phone Number:
</br> (123) 456-7890
</p>

<p class="p4">
Email:
</br> [email protected]
</p>

<p class="p4">
Address:
</br> 1775 Army Navy Street
</br> Marine Corps, Air Force, USA 01230
</p>

<div>
<audio controls autoplay>
<source src="./music/VetsInTechMusic.mp3" type="audio/mp3">
Your browser does not support the audio tag.
</audio>
</div>

</article>

<article>
<div class="gallery">
<div style="margin: 40px 0px 30px 0px;">
<img src="./images/VITlogo.png" alt="VITlogo" width="150em" height="85">
</div>

<hr size="13" width="95%" align="center" color="black">

<p class="p5">
Silent Auction
</p>

<hr size="13" width="95%" align="center" color="black">

<p class="p6">
Join us for the annual VetsInTech
</br> Silent Auction!
</p>

<p class="p6">
Date: 09/27/2021
</br> Time: 08:00 PM EST
</p>

<div class="gallery">
<div style="margin-top: 100px;">
<img src="./images/photosOnTable.png" alt="photosOnTable" width="430" height="275">
</div>
</div>

</div>
</article>
</section>

</body>
</html>
70 changes: 70 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
article{
height: 900px;
width: 450px;
background: white;
margin: 5px 5px;
}

section{
display: flex;
}

body{
background-color: black;
}

.p1 {
text-align: center;
text-decoration: underline;
margin-top: 170px;
margin-bottom: 10px;
word-wrap: break-word;
font-size: 70px;
font-family: Arial, Helvetica, sans-serif;
}

.p2 {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 50px;
margin-top: 15px;
}

div.gallery {
text-align: center;
}

.p3 {
text-align: center;
text-decoration: underline;
font-size: 65px;
font-weight: lighter;
font-family: Arial, Helvetica, sans-serif;
margin: 30px 0px 35px 0px;
}

.p4 {
text-align: left;
font-size: 24px;
font-family: Arial, Helvetica, sans-serif;
margin-left: 10px;
}

.p5 {
text-align: center;
font-size: 53px;
font-weight: 900;
font-family: Arial, Helvetica, sans-serif;
margin: 5px 0px 5px 0px;
}

.p6 {
text-align: left;
font-size: 24px;
font-family: Arial, Helvetica, sans-serif;
margin: 30px 0px 50px 20px;
}

audio{
display: flex;
}