-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add index.html, page styling and images
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
0 parents
commit 49211a9
Showing
8 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ; | ||
} |