Basic design

This commit is contained in:
Shylie 2024-01-13 02:41:21 -05:00
parent 51e288ba45
commit c8909ba9e0
4 changed files with 68 additions and 1 deletions

View File

@ -2,8 +2,14 @@
<html>
<head>
<title>shylie.info</title>
<link rel="stylesheet" href="resources/style.css">
</head>
<body>
<p>Hello, World!</p>
<div>
<h1>Header Text...</h1>
<h2>Header 2 Text...</h2>
<p>Lorem ipsum nec feugiat proin dictumst felis odio, netus sollicitudin tempus facilisis faucibus amet, netus venenatis mollis ultrices quisque arcu. Fames molestie purus nibh malesuada in etiam, bibendum auctor mollis donec volutpat felis purus, tellus litora vehicula nullam praesent. Curabitur quisque gravida tincidunt a commodo auctor fames hac massa vel eleifend quisque torquent, aliquam orci arcu aenean hac pellentesque sit amet integer ultricies quam.</p>
<p class="block">Eu ullamcorper hendrerit ad convallis sociosqu orci ipsum rhoncus egestas, vehicula litora per risus proin velit aenean amet duis, porttitor sagittis massa aptent nostra tellus mollis magna. Bibendum integer cursus etiam sollicitudin et consectetur ad tellus conubia netus, sodales sapien vehicula rhoncus dictumst egestas pellentesque sem. Magna et vel torquent commodo mauris eget a, molestie ornare taciti turpis litora urna felis, platea posuere donec imperdiet suscipit posuere.</p>
</div>
</body>
</html>

BIN
resources/ProggyTiny.ttf Normal file

Binary file not shown.

View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2004, 2005 Tristan Grimmer
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

40
resources/style.css Normal file
View File

@ -0,0 +1,40 @@
@font-face {
font-family: 'proggy-tiny';
src: url('ProggyTiny.ttf');
}
* {
font-weight: 400;
}
html {
display: flex;
justify-content: center;
margin: auto;
margin-top: 20px;
font-family: 'proggy-tiny';
font-size: 32px;
background: #400;
color: #FB8;
text-shadow: 2px 2px #100;
}
body {
text-align: center;
background: #840;
padding: 5px 25px 5px 25px;
box-shadow: 0px 3px 6px 2px #100;
width: 65%;
}
h1,.block {
padding: 0.125em;
background: #600;
box-shadow: 0px 3px 6px 2px #200;
color: #FB0;
text-shadow: 2px 2px #000;
}
h1 {
text-shadow: 3.5px 3.5px #000;
}