Added introduction.

This commit is contained in:
eworc778 2025-08-09 13:02:51 +01:00
parent b3afee0ae4
commit 1f067e5a30
5 changed files with 43 additions and 1 deletions

View File

@ -1,3 +1,5 @@
# Website
![enbyware](https://pride-badges.pony.workers.dev/static/v1?label=enbyware&labelColor=%23555&stripeWidth=8&stripeColors=FCF434%2CFFFFFF%2C9C59D1%2C2C2C2C)
My personal website.

BIN
src/img/me.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

0
src/index.js Normal file
View File

View File

@ -4,10 +4,17 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Eworc's place</title>
<title>Eworc's site</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<script src="index.js"></script>
</body>
</html>
<div class="intro-div">
<img src="img/me.png" class="profile-picture">
<p>Hey, I'm Eworc.</p>
</div>

33
src/style.css Normal file
View File

@ -0,0 +1,33 @@
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap');
body {
background-color: #1a1b26;
}
p {
font-family: Google Sans Code;
color: #1a1b26;
}
.intro-div{
background-color: #2ac3de;
margin-left: auto;
margin-right: auto;
max-width: 50%;
text-align: center;
border-radius: 10px;
padding: 10px;
margin-top: 5%;
}
.profile-picture{
border-radius: 100px;
max-width: 25%;
}