mirror of
https://github.com/itme-brain/itme-brain.github.io.git
synced 2026-03-23 20:19:43 -04:00
First Push
This commit is contained in:
parent
f7668f8a90
commit
4a072c1490
2 changed files with 138 additions and 0 deletions
31
index.html
Normal file
31
index.html
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
<!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">
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Righteous&family=Ubuntu&display=swap" rel="stylesheet">
|
||||||
|
<link rel="stylesheet" href="styles.css">
|
||||||
|
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
||||||
|
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
||||||
|
<title>codecologist.dev</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<section class="navbar">
|
||||||
|
<div class="socialicons">
|
||||||
|
<a class="phoneicon" href="tel:786-319-2776"><ion-icon name="call"></ion-icon></a></li>
|
||||||
|
<a class="mailicon" href="mailto: bryan@codecologist.com"><ion-icon name="mail"></ion-icon></a>
|
||||||
|
<a class="githubicon" href="https://github.com/codecologist"><ion-icon name="logo-github"></ion-icon></a>
|
||||||
|
<a class="twittericon" href="https://twitter.com/Codecologist"><ion-icon name="logo-twitter"></ion-icon></a>
|
||||||
|
<a class="youtubeicon" href="https://www.youtube.com/channel/UCqr3HoBvla1s9hK5CCKI_Kg"><ion-icon name="logo-youtube"></ion-icon></a>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="heading">
|
||||||
|
<h1>Bryan Ramos</h1>
|
||||||
|
<h2>Fullstack Developer</h2>
|
||||||
|
</section>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
107
styles.css
Normal file
107
styles.css
Normal file
|
|
@ -0,0 +1,107 @@
|
||||||
|
:root {
|
||||||
|
--mainColor: lightgray;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:visited, a:active {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Navigation Bar Styling */
|
||||||
|
.navbar {
|
||||||
|
background-color: var(--mainColor);
|
||||||
|
position: fixed;
|
||||||
|
width: 100%;
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.socialicons {
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 25px;
|
||||||
|
display: grid;
|
||||||
|
align-items: center;
|
||||||
|
grid-auto-flow: column;
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Contact Icon Styling */
|
||||||
|
.phoneicon {
|
||||||
|
display: inline-block;
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 3px 3px 0 3px;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mailicon {
|
||||||
|
display: inline-block;
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0 3px 0 3px;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.githubicon {
|
||||||
|
display: inline-block;
|
||||||
|
color: black;
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0 3px 0 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.twittericon {
|
||||||
|
display: inline-block;
|
||||||
|
color: lightblue;
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0 3px 0 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.youtubeicon {
|
||||||
|
display: inline-block;
|
||||||
|
color: white;
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0 3px 0 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Heading Styling */
|
||||||
|
|
||||||
|
.heading {
|
||||||
|
border-bottom: 5px solid black;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 60px;
|
||||||
|
font-family: 'Righteous', cursive;
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 30px 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 20px;
|
||||||
|
font-family: 'Righteous', cursive;
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 10px 0 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Portfolio Section Styling */
|
||||||
Loading…
Add table
Add a link
Reference in a new issue