diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 00000000..6f3a2913
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,3 @@
+{
+ "liveServer.settings.port": 5501
+}
\ No newline at end of file
diff --git a/about.html b/about.html
new file mode 100644
index 00000000..df104303
--- /dev/null
+++ b/about.html
@@ -0,0 +1,11 @@
+
+
+
+
+
+ Document
+
+
+ ABOUT
+
+
\ No newline at end of file
diff --git a/contact.html b/contact.html
new file mode 100644
index 00000000..7c293bd1
--- /dev/null
+++ b/contact.html
@@ -0,0 +1,11 @@
+
+
+
+
+
+ Document
+
+
+ CONTACT
+
+
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 00000000..52bd94e3
--- /dev/null
+++ b/index.html
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
NYJAE LEE
+
+
+ Here are some random words about my journey as a webDEV. Hope they are inspiring.
+
+
+
+
+
+
+
+
+
+
Portfolio Piece
+
+
+
+
Portfolio Piece
+
+
+
+
Portfolio Piece
+
+
+
+
Portfolio Piece
+
+
+
+
+
+
Portfolio Piece
+
+
+
+
Portfolio Piece
+
+
+
+
Portfolio Piece
+
+
+
+
Portfolio Piece
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/projects.html b/projects.html
new file mode 100644
index 00000000..266e620b
--- /dev/null
+++ b/projects.html
@@ -0,0 +1,11 @@
+
+
+
+
+
+ Document
+
+
+ PROJECTS
+
+
\ No newline at end of file
diff --git a/style/index.css b/style/index.css
new file mode 100644
index 00000000..9d6422c5
--- /dev/null
+++ b/style/index.css
@@ -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
+ }
+}
\ No newline at end of file