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
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
75 changes: 71 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,78 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style/index.css">
<title>Document</title>
</head>

<body>

<header>
<h1>Maksim Raymond</h1>
<nav>
<a href="/index.html" class="home">Home</a>
<a href="/about.html">About</a>
<a href="/contact.html">Contents</a>
<a href="/projects.html">Projects</a>
</nav>
</header>
<div class="headWrapper">
<img src="https://ca.slack-edge.com/ESZCHB482-W0177GC4U9M-379f00fc2c95-512">
<div class="right">
<h2>Maksim Raymond</h2>
<button><a href="https://github.com/MaksimRaymond?tab=repositories">My Projects</a></button>
<p>This is my journey. Im 24 years old. Im a Twitch streamer and needed to create a website for my business. For
years I have been into computers and video games. I have always wanted to become a video game tester and figure
out how they work. My cousin finally convinced me to take a look at Lambda. Two days into school and already I
know how to create a website. Only then did I realize that my dreams could come true through Software
Development. Im ready to head to the Next Level!</p>
</div>
</div>
<div class="pictures">
<div class="rowOne">
<div>
<img src="https://picsum.photos/seed/picsum/200/300">
<p>Project</p>
</div>
<div>
<img src="https://picsum.photos/200/300?grayscale">
<p>Project 2</p>
</div>
<div>
<img src="https://i.picsum.photos/id/1011/5472/3648.jpg?hmac=Koo9845x2akkVzVFX3xxAc9BCkeGYA9VRVfLE4f0Zzk">
<p>Project 3</p>
</div>
<div>
<img src="https://i.picsum.photos/id/1041/5184/2916.jpg?hmac=TW_9o6HeD7H7I7NVo-S1Fa1iAvzQ10uvmJqsXvNoi0M">
<p>Project 4</p>
</div>
</div>
</div>
<div class="rowTwo">
<div>
<img src="https://i.picsum.photos/id/15/2500/1667.jpg?hmac=Lv03D1Y3AsZ9L2tMMC1KQZekBVaQSDc1waqJ54IHvo4">
<p>Project 5</p>
</div>
<div>
<img src="https://i.picsum.photos/id/158/4836/3224.jpg?hmac=Gu_3j3HxZgR74iw1sV0wcwlnSZSeCi7zDWLcjblOp_c">
<p>Project 6</p>
</div>
<div>
<img src="https://i.picsum.photos/id/180/2400/1600.jpg?hmac=Ig-CXcpNdmh51k3kXpNqNqcDYTwXCIaonYiBOnLXBb8">
<p>Project 7</p>
</div>
<div>
<img src="https://i.picsum.photos/id/218/4752/3168.jpg?hmac=Orn41GOM38rjA-HLzG_hpWi1sfLgnsAAvpiB-uwjvf0">
<p>Project 8</p>
</div>
</div>
<div class="footer">
<h2>Like what you see?</h2>
<button><a href="https://www.instagram.com/maksimraymond/">Contact Me</a></button>
</div>

</body>

</html>
257 changes: 256 additions & 1 deletion style/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,256 @@
/* Add CSS styling here */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
max-width: 100%;
text-decoration: none;
color: black;
}

body {
background-color: #b3ecec;
}

header {
background-color: teal;
display: flex;
flex-direction: column;
padding: 25px;
}

h1 {
color: white;
padding: 1%;
}

header nav {
display: flex;
padding: 15px;
}

header nav a {
padding: 10px 20px;
border: 3px solid black;
text-decoration: none;
color: white;
text-align: center;
}

.home {
background-color: black;
color: white;
}

.headWrapper {
display: flex;
}

img {
padding: 10px;
display: flex;
width: 40%;
}

.right {
display: flex;
flex-direction: column;
padding-left: 5%;
padding-top: 8%;
width: 50%;
}

.right > * {
margin-bottom: 30px;
width: 60%;
}

.right button {
width: 20%;
padding: 10px;
border-radius: 5px;
}

.right p {
font-size: 24px;
}
.pictures {
padding-top: 25px;
}
.rowOne,
.rowTwo {
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
.rowOne p {
padding-bottom: 30px;
}

.rowOne > *,
.rowTwo > * {
display: flex;
flex-direction: column;
align-items: center;
}
.rowOne img,
.rowTwo img {
width: 250px;
height: 250px;
}

.footer {
display: flex;
flex-direction: column;
align-items: center;
padding: 45px;
background-color: #ffd6bf;
margin-top: 30px;
}

.footer button {
padding: 20px;
margin: 10px;
border-radius: 20px;
background-color: #b3ecec;
}
.footer a {
margin: 45px;
}

@media(max-width:800px){


body {
width: 100%;
background-color:teal;
}
header {
width: 100%;
background-color:#367588;
}
header h1 {
text-align: center;
}
nav {
flex-direction: column;
margin: 0 auto;
width: 50%;
}

.headWrapper {
align-items: center;
flex-direction: column;
width: 100%;
padding: 0;
text-align: center;
}

img {
width: 100%;
padding: 50px;
}
.right {
width: 100%;
align-items: center;
}
.rowOne{
flex-wrap:wrap;
width:100%;
}
.rowOne div{
width:50%;
}
.rowOne div img{
padding:8%;
width:100%;
height:400px;

}
.rowTwo{
flex-wrap:wrap;
width:100%;
}
.rowTwo div{
width:50%;
}
.rowTwo div img{
padding:8%;
width:100%;
height:400px;
}
h2{
font-size:2rem;
}
button a{
font-size: 1.5rem;
}
.footer button{
margin-top:25px;
}
}



@media (max-width: 500px) {
body {
width: 500px;
background-color:#367588;
}
header {
width: 100%;
background-color:teal;
}
header h1 {
text-align: center;
}
nav {
flex-direction: column;
margin: 0 auto;
width: 50%;
}

.headWrapper {
align-items: center;
flex-direction: column;
width: 100%;
padding: 0;
text-align: center;
}

img {
width: 100%;
padding: 50px;
}
.right {
width: 100%;
align-items: center;
}
.right button{
width:30%;
}
.right button a{
font-size: 1.2rem;
}
.rowOne{
flex-wrap:wrap;
width:100%;
}
.rowOne div{
width:50%;
}
.rowOne div img{
padding:8%;
}
.rowTwo{
flex-wrap:wrap;
width:100%;
}
.rowTwo div{
width:50%;
}
.rowTwo div img{
padding:8%;
}
}