Ooh style

This commit is contained in:
Bill Rossi 2022-07-13 22:02:26 -04:00
parent 329db22c93
commit 102797a9e0
2 changed files with 43 additions and 0 deletions

View File

@ -1,8 +1,22 @@
<html> <html>
<head> <head>
<title>Bill Rossi - Software Engineer</title> <title>Bill Rossi - Software Engineer</title>
<link type="text/css" rel="stylesheet" href="./style.css">
<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=Edu+VIC+WA+NT+Beginner:wght@600&display=swap" rel="stylesheet">
</head> </head>
<body> <body>
<header>
<span class="logo">billros.si</span>
<nav>
<ul>
<li>Home</li>
<li>Toons</li>
<li>Games</li>
</ul>
</nav>
</header>
<h1>Hello, world!</h1> <h1>Hello, world!</h1>
<p>This page is profoundly and deeply under construction. Check back in a couple of days!</p> <p>This page is profoundly and deeply under construction. Check back in a couple of days!</p>
</body> </body>

29
style.css Normal file
View File

@ -0,0 +1,29 @@
body {
margin: 0px;
background-color: #5b0605;
}
header {
display: flex;
justify-content: space-between;
/*width: 100%;*/
padding: 20px 2%;
/*border-bottom: 2px solid #972308;
background-color: #FFE5B4;*/
}
.logo {
font-family: 'Edu VIC WA NT Beginner', cursive;
font-size: 36pt;
color: #e0a94a;
filter: drop-shadow(3px 4px 0px #db832a);
text-decoration: underline dotted;
}
ul {
margin: 0%;
}
nav>ul>li {
display: inline;
}