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
31 changes: 19 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="styles.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Sebastian Lague</title>
<!--Imported Bootstrap for future scaling/front end developmnent of website.-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>

<h1> Hello! </h1>
<p> This site is under construction </p>

<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/4QOcCGI6xOU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>


<body class="container">
<img src="https://avatars0.githubusercontent.com/u/4266663?s=460&u=c76c023f7636ef94b182ee6a444f3517639ccc27&v=4"> </img>
<h1> Hello, my name is Sebastian Lague and I like to explore how to create stuff out of code.</h1>
<a href="https://www.youtube.com/c/SebastianLague"><button class="button_links" id="yt_link">YouTube</button></a>
<a href="https://twitter.com/SebastianLague"><button class="button_links" id="tw_link">Twitter</button></a>
<a href="https://www.patreon.com/SebastianLague"><button class="button_links" id="pt_link">Patreon</button></a>
<a href="https://github.com/SebLague"><button class="button_links" id="gt_link">Github</button></a>
<p>Improved Website Coming Soon</p>
<!-- Left Bootstrap Javascript files for possible future use.-->
<!-- <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script> -->
</body>
</html>
43 changes: 37 additions & 6 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,46 @@

body {
background-color: #222222;
background-color: #1e1e1e;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
img{
border-radius: 100%;
width: 200px;
padding: 10px;
}

h1 {
color: white;
font-family: Arial, Helvetica, sans-serif;
font-size: 30px;
}

p {
color: #DDDDDD;
font-size: 16px;
color: #ffffff69;
font-style: italic;
font-size: 14px;
}

.button_links{
transition-duration: 0.5s;
width: 300px;
color: white;
font-weight: 500;
padding: 5px;
margin: 5px;
border: 0px solid white;
border-radius: 2.5px;
}
.button_links:hover{
transition-duration: 0.5s;
}
#yt_link {background-color: rgba(0, 0, 0, 0.5);}
#yt_link:hover {background-color: red;}
#tw_link {background-color: rgba(0, 0, 0, 0.5);}
#tw_link:hover {background-color: rgb(29, 161, 242);}
#pt_link {background-color: rgba(0, 0, 0, 0.5);}
#pt_link:hover {background-color: rgb(255, 66, 77);}
#gt_link {background-color: rgba(0, 0, 0, 0.5);}
#gt_link:hover {background-color: black;}