Skip to content

Commit

Permalink
V3
Browse files Browse the repository at this point in the history
V3
  • Loading branch information
eletrixtime authored Aug 25, 2024
1 parent 3cc1284 commit e2a4ff6
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 0 deletions.
Binary file added assets/pp1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/script.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions assets/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
html, body {
height: 100%;
margin: 0;
padding: 0;
background-color: #000000;
color: white;
font-family: Courier New, monospace;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20vh;
}
.pp {
border-radius: 50%;
width: 100px;
height: 100px;
margin-bottom: 10px;
}
.title {
font-size: 50px;
text-align: center;
margin: 0;
}
.about_me_div {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 5px;
}
.about_me_div p {
margin: 2px 0;
}
.footer {
font-size: 30px;
text-align: center;
margin-top: auto;
margin-bottom: 20px;
}
23 changes: 23 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!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">
<title>EletrixTime</title>
<link rel="stylesheet" href="assets/style.css">
<script src="assets/script.js"></script>
</head>
<body>
<img src="assets/pp1.png" alt="profile" class="pp ">
<h1 class="title">EletrixTime</h1>
<div class="about_me_div">
<p>I'm EletrixTime!</p>
<p>I'm a 🐍 developer from France.</p>
<p>Founder of CryptSocial, RE:Cloud, CloudBot, and more !</p>
</div>
</body>
<footer class="footer">
<p>(C) 2024 EletrixTime</p>
</footer>
</html>
1 change: 1 addition & 0 deletions readme.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Portfolio

0 comments on commit e2a4ff6

Please sign in to comment.