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
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
}
11 changes: 11 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1> ABOUT </h1>
</body>
</html>
11 changes: 11 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width= <h1> ABOUT </h1>, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1> CONTACT </h1>
</body>
</html>
75 changes: 75 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!DOCTYPE html>
<html lang="en">
<head>
<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>NYJAE LEE</h1>
<nav>
<button><a href="index.html">HOME</a></button>
<button><a href="about.html">ABOUT</a></button>
<button><a href="contact.html">CONTACT</a></button>
<button><a href="projects.html">PROJECTS</a></button>
</nav>
</header>
<section class="top-section">
<img src="https://picsum.photos/600/400" alt=""/>
<div class="description">
<h2> NYJAE LEE</h2>
<button><a href="projects.html">My Projects</a></button>
<p>
Here are some random words about my journey as a webDEV. Hope they are inspiring.
</p>
</div>

</section>

<section>
<div class="row">
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
</div>
<div class="row">
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
<div class="portfolio-el">
<img src="https://picsum.photos/300" alt="">
<p>Portfolio Piece</p>
</div>
</div>
</section>

<footer>
<h2>Like What You See?</h2>
<button><a href="contact.html">Contact Me</a></button>
</footer>
</body>
</html>
11 changes: 11 additions & 0 deletions projects.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1> PROJECTS </h1>
</body>
</html>
170 changes: 170 additions & 0 deletions style/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
/* Add CSS styling here */

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

header {
background-color: lightgray;
padding: 20px;
margin-bottom: 15px;
}

footer{
background-color: lightgray;
text-align: center;
padding: 20px;
}

*{
box-sizing: border-box;
padding: 0;
margin: 0;
max-width:100%;
border: 1px solid gray;
}

.top-section{
display: flex;
flex-direction: row;
justify-content: center;
}

.description{
padding: 20px;

}

.row{
display: flex;
justify-content: space-evenly;
flex-direction: row;
padding: 20px;
}

.portfolio-el{
text-align: center;

}

p {
margin-top: 5px;
}



button {
background-color: white;
color: black;
border: black solid 1px;
padding: 5px 10px
}

button:hover {
background-color: black;
color: white;
border: white solid 1px;

}

button a{
text-decoration: none;
color: inherit
}

@media(max-width: 800px){
.row div {
width: 20%;
}
.top-section img {
width: 40%;
}
}

@media(max-width: 500px){
header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

nav{
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}

button{
width: 40%;
margin: 1% 0
}

.top-section{
display: flex;
flex-direction: column;
align-items: center;

}

.top-section div {
width: 90%
}

.row{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}

.row div {
width: 40%;
margin: 4% 0
}
}