Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 101 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,106 @@
<title>Full Stack Portfolio</title>
</head>
<body>
<div class="header">
<p>Ella Magnifica</p>
<a href="#about">About Me</a>
<a href="#portfolio">Portfolio</a>
<a href="#experience">Experience</a><br />
<h1>Hiring A Full-Stack Developer?</h1>
<br />

<p>
I have experience with<span>React</span>,<span>NodeJS</span>and<span
>Typescript</span
>
,I would love to work at an innovative and eco-friendly start-up in the
<span>sustainable energy sector</span>.
</p>
</div>
<div class="aboutme">
<div class="aboutmechild">
<h1>ABOUT ME</h1>
<p>Introduction</p>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book. It has survived not only
five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged.
</p>
<h3>Technical Skills</h3>
<div class="skills-list">
<ul class="column">
<li>HTML&CSS</li>
<li>Javascript</li>
<li>Typescript</li>
</ul>
<ul class="column">
<li>React</li>
<li>NodeJS</li>
<li>Redux</li>
</ul>
</div>
</div>
</div>
<div class="pinkcontainer">
<h1>PORTFOLIO</h1>
<div class="card-container">
<div class="card">
<h2>Title</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s, when an unknown printer took a galley of type
and scrambled it to make a type specimen book.
</p>
<a href="https://www.instagram.com" class="read-more">READ MORE</a>
<span><a href="https://www.instagram.com">GitHub Repo</a></span>
</div>
<div class="card">
<h2>Title</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s, when an unknown printer took a galley of type
and scrambled it to make a type specimen book.
</p>
<a href="https://www.instagram.com" class="read-more">READ MORE</a>
<span><a href="https://www.instagram.com">GitHub Repo</a></span>
</div>
<div class="card">
<h2>Title</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s, when an unknown printer took a galley of type
and scrambled it to make a type specimen book.
</p>
<a href="#" class="read-more">READ MORE</a>
<span><a href="https://www.instagram.com">GitHub Repo</a></span>
</div>
</div>
</div>
<div class="experiencebox">
<h1>EXPERIENCE</h1>
<div class="box4">
<h1>Job title</h1>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book..
</p>

<h1>Job title</h1>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book.
</p>
</div>
</div>
</body>
</html>
</html>
138 changes: 138 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
* {
scroll-behavior: smooth;
}
body,
html {
margin: 0;
font-family: Arial, sans-serif;
background-color: darkolivegreen;
}
.header {
display: grid;
grid-template-columns: repeat(4, 1fr);
background-color: #008080;
padding: 20px 20px;
color: white;
width: auto;
height: 400px;
}
.header a {
color: white;
text-decoration: none;
text-align: right;
display: block;
margin-top: 30px;
}
.header p {
color: azure;
margin: 5px;
padding: 20px;
}
.header span {
color: darkblue;
}
.h1 {
color: aliceblue;
size: 100px;
}
.aboutme {
display: grid;
background-color: white;
padding: 20px 20px;
width: auto;
height: 400px;
margin-top: 20px;
}
.aboutmechild {
text-align: center;
}
.aboutme h1 {
color: darkslategrey;
}
.aboutme p h3 {
text-align: center;
font-size: small;
}
ul {
columns: 2;
-webkit-columns: 2;
-moz-columns: 2;
list-style-type: none;
padding: 0;
}
li {
break-inside: avoid-column;
}
.pinkcontainer {
background-color: rosybrown;
text-align: center;
}

.main-container {
text-align: center;
padding-top: 20px;
}

.card-container {
display: flex;
justify-content: center;
gap: 20px;
padding: 20px;
}

.card {
width: 300px;
background-color: #ffffff;
border: 2px solid #ff6f91; /* Pink border */
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
position: relative;
}

.card h2 {
color: #ff6f91; /* Title color */
}

.card p {
text-align: left;
color: #666;
}

.read-more {
display: block;
background-color: #ff6f91; /* Button color */
color: white;
text-decoration: none;
padding: 10px 20px;
margin: 10px 0;
border-radius: 5px;
}

.card span {
display: block;
margin-top: 10px;
color: #ff6f91; /* GitHub text color */
}
.experiencebox {
display: grid;
grid-template-columns: repeat(4, 1fr);
background-color: white;
padding: 20px 20px;
margin-bottom: 20px;
width: auto;
height: 400px;
font-size: small;
}
.experiencebox h1 {
color: #008080;
}

.box4 h1 {
text-align: center;
color: black;
margin-top: 40px;
}
.experiencebox p {
text-align: center;
margin-bottom: 20px;
}