Skip to content

Commit

Permalink
add index.html, page styling and images
Browse files Browse the repository at this point in the history
I have made a basic landing page for my dev portfolio. I have used CSS for some styling and images for the icons of languages with experience.
  • Loading branch information
Ewan-Dev committed Aug 2, 2024
0 parents commit 49211a9
Show file tree
Hide file tree
Showing 8 changed files with 69 additions and 0 deletions.
Binary file added images/cLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/cssLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/gitLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/grainyPurpleGradient.pdf
Binary file not shown.
Binary file added images/html5Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/pythonLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link href="styling.css" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ewan McCairn || Developer Portfolio </title>
</head>
<body>

<section class="center header">
<p>hi, I'm Ewan</p>
</section>

<p><u><i>I am a senior-school student and developer</i></u></p>
<p>languages with experience:</p>
<div class="wrap">
<img class="icon" src="images/pythonLogo.png">
<img class="icon" src="images/cLogo.png">
<img class="icon" src="images/html5Logo.png">
<img class="icon" src="images/gitLogo.png">
</div>
<br>
<p>projects:</p>
<p>wip</p>
</body>

</html>
41 changes: 41 additions & 0 deletions styling.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
font-family: "Space Mono", monospace;
font-weight: 200;
font-style: normal;
color: white;
margin:0.2em ;
padding: 0;
background-color: #0f0f0f;


}
p
{
margin:0.3em;
}
.header
{
height: 5em;
text-align: center;
border-radius: 1em;
background: linear-gradient(215deg, rgba(255,102,252,0.9819940476190476) 0%, rgba(141,51,228,1) 61%, rgba(9,17,102,1) 100%);
}
.center
{
display: flex;
justify-content: center;
align-items: center;
}
.wrap {
display: flex;
flex-wrap: wrap;
}
.icon {
height: 1.5em;
width: 1.5em;
margin: 0.2em;
padding: 0.3em;
border: #ededed solid 0.15em;
border-radius:0.5em ;
}

0 comments on commit 49211a9

Please sign in to comment.