Upload files to "/"

This commit is contained in:
Rosia Evans 2025-05-07 21:11:52 +00:00
commit 9b41ab779a
3 changed files with 92 additions and 0 deletions

BIN
eva.otf Normal file

Binary file not shown.

29
index.html Normal file
View file

@ -0,0 +1,29 @@
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Robyn <br> Vaughan <br> Williams</h1>
<a> link1 </a>
<a> link1 </a>
<a> link1 </a>
<a> link1 </a>
</header>
<div class="sub-bar">
<div class="tri"></div>
<nav>
<ul>
<li>test1</li>
<li>test2</li>
<li>test3</li>
</nav>
</div>
<main>
<article>
</article>
</main>
</body>
</html>

63
style.css Normal file
View file

@ -0,0 +1,63 @@
@font-face {
font-family: eva;
src: url("eva.otf");
}
html{
margin: 0;
padding: 0;
font-family: eva;
}
body{
background-color: #ebe0cc;
margin: 0;
padding: 0;
}
header{
background-color: black;
color: white;
margin: 0;
display: flex;
align-items: flex-end;
}
header a{
font-size: 2rem;
margin-left: 20px;
vertical-align: text-bottom;
}
header h1{
transform: rotate(-90deg);
border-bottom: 3px solid white;
margin-right: 10px;
}
main{
display: grid;
grid-template-columns: 1fr 2fr 1fr;
}
.tri{
width: 0;
height: 0;
border-top: 0px solid black;
border-left: 100px solid black;
border-bottom: 50px solid transparent;
}
nav{
display: flex;
flex-direction: row;
}
.sub-bar{
display: flex;
flex-direction: row;
}