first commit
This commit is contained in:
parent
509d52e42b
commit
3e88bad5df
12 changed files with 136 additions and 0 deletions
BIN
fonts/American Scribe.eot
Normal file
BIN
fonts/American Scribe.eot
Normal file
Binary file not shown.
BIN
fonts/American Scribe.otf
Normal file
BIN
fonts/American Scribe.otf
Normal file
Binary file not shown.
BIN
fonts/American Scribe.ttf
Normal file
BIN
fonts/American Scribe.ttf
Normal file
Binary file not shown.
BIN
fonts/American Scribe.woff
Normal file
BIN
fonts/American Scribe.woff
Normal file
Binary file not shown.
BIN
fonts/American Scribe.woff2
Normal file
BIN
fonts/American Scribe.woff2
Normal file
Binary file not shown.
BIN
fonts/TerraIgnota.eot
Normal file
BIN
fonts/TerraIgnota.eot
Normal file
Binary file not shown.
BIN
fonts/TerraIgnota.otf
Normal file
BIN
fonts/TerraIgnota.otf
Normal file
Binary file not shown.
BIN
fonts/TerraIgnota.ttf
Normal file
BIN
fonts/TerraIgnota.ttf
Normal file
Binary file not shown.
BIN
fonts/TerraIgnota.woff
Normal file
BIN
fonts/TerraIgnota.woff
Normal file
Binary file not shown.
BIN
fonts/TerraIgnota.woff2
Normal file
BIN
fonts/TerraIgnota.woff2
Normal file
Binary file not shown.
52
index.html
Normal file
52
index.html
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
<!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>The Wedding</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main>
|
||||
<h1>The Wedding</h1>
|
||||
<h2>( all the important links )</h2>
|
||||
|
||||
<h3>Sites</h3>
|
||||
<ul>
|
||||
<li><a href="https://wedding.irina-and-spencer.com">Wedding Info</a></li>
|
||||
<li><a href="https://schedule.irina-and-spencer.com">Events and Schedule</a></li>
|
||||
<li><a href="https://photos.irina-and-spencer.com">Upload Photos</a></li>
|
||||
</ul>
|
||||
<h3>Contact</h3>
|
||||
<ul>
|
||||
<li><a href="mailto:thecouple@irina-and-spencer.com">The Couple's Email</a></li>
|
||||
<li><a href="mailto:weddingparty@irina-and-spencer.com">The Bridal Party's Email</a></li>
|
||||
<li><a href="tel:+15182076939"><span class="block">Spencer's Number</span></a>
|
||||
<span class="note">it's a USA number, but I will receive the call in Europe</span>
|
||||
<span class="badge">whatsapp</span>
|
||||
<span class="badge">signal</span>
|
||||
<span class="badge">telegram</span>
|
||||
</li>
|
||||
<li><a href="tel:+31628857799"><span class="block">Irina's Number</span></a>
|
||||
<span class="badge">whatsapp</span>
|
||||
<span class="badge">signal</span>
|
||||
<span class="badge">telegram</span>
|
||||
</li>
|
||||
<li><a
|
||||
href="https://signal.group/#CjQKIBIbu_Nob0FY_4BjN6ivdP-TexXqlFlibcGaE33nwe9OEhCm4RxsN6VNLp1CQpQhpbTU">Signal
|
||||
Group for Travelers</a></li>
|
||||
</ul>
|
||||
<h3>Locations</h3>
|
||||
<ul>
|
||||
<li><a href="https://www.google.com/maps/place/Jadelaan+68,+3523+CW+Utrecht/">The Couple's Apartment</a>
|
||||
</li>
|
||||
<li><a href="https://goo.gl/maps/NSgqmPmcAqAg2iQq6">The Venue</a></li>
|
||||
</ul>
|
||||
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
84
style.css
Normal file
84
style.css
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
@font-face {
|
||||
font-family: "American Scribe";
|
||||
src: url("./fonts/American%20Scribe.woff2") format("woff2");
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "TerraIgnota";
|
||||
src: url("./fonts/TerraIgnota.woff2") format("woff2");
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
html{
|
||||
font-size: 3vmin;
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
}
|
||||
|
||||
|
||||
body{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 100vh;
|
||||
padding: 0;
|
||||
margin: 2rem;
|
||||
color: #213563;
|
||||
}
|
||||
|
||||
a{
|
||||
color: #213563;
|
||||
}
|
||||
|
||||
span.block{
|
||||
display: block;
|
||||
}
|
||||
|
||||
span.badge, span.note{
|
||||
border-radius: 999px;
|
||||
padding: .1em .7em;
|
||||
font-size: .75rem;
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
background-color: white;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
span.badge{
|
||||
border: 1px solid #008290;
|
||||
color: #008290;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
span.note {
|
||||
border: 1px solid #999;
|
||||
color: #999;
|
||||
display: block;
|
||||
margin-bottom: .25em;
|
||||
}
|
||||
|
||||
ul{
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
li{
|
||||
font-weight: 200;
|
||||
margin-bottom: .25rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-family: 'American Scribe';
|
||||
font-weight: 100;
|
||||
font-size: 6rem;
|
||||
line-height: 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-family: "TerraIgnota";
|
||||
font-size: 1.5rem;
|
||||
font-weight: 100;
|
||||
color: #008290;
|
||||
margin-top:-1.5em;
|
||||
}
|
||||
Loading…
Reference in a new issue