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
1 change: 1 addition & 0 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Document</title>
</head>
<body>
Expand Down
Binary file added images/simonCat.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 57 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,64 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<title>Kyle Li</title>
</head>
<body>

<header>
<h1>Kyle Li</h1>
<hr class = "top-line">
<nav class = "top-nav">
<a href="">Home</a>
<a href="">About</a>
<a href="">Contact</a>
<a href="">Projects</a>
</nav>
<h2>A Little About Me</h2>
<p>
I have took some college level programming courses and courses from Udemy. These experience helps me understand how things work behind the screen. I am currently enrolled in Lambda School, and I will learn lot more technique from them to build great projects.
</p>
<p>
Programming is a skill that requires lots of hours of learning and practicing. I never thought of myself becoming a web developer when I was still just a kid, but I know if there is something that has to do with computer I'd be down!
</p>


</header>
<section class="bg-img">
<!-- img section -->
</section>
<section class="projects">
<div class="projects-container">
<div class="box">
<i class="fa fa-pencil-square-o"></i>
<h3>Working On</h3>
</div>
<div class="box">
<i class="fa fa-street-view"></i>

<h3>Imitated</h3>
</div>
<div class="box">
<i class="fa fa-soccer-ball-o"></i>
<h3>Entertainment</h3>

</div>
<div class="box">
<i class="fa fa-trophy"></i>
<h3>Great Success</h3>
</div>
</div>

<p>As A Full-Stack Web Developer, I Categorize Every Project That Is In My Hand.There Are Four Category For All My Projects.</p>


</section>
<footer>

<a href="">Contact</a>

</footer>

</body>
</html>
263 changes: 263 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,263 @@
/* CSS Reset */
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;
}

*{
box-sizing: border-box;
max-width: 100%;

}

/* General CSS */

html{
font-size: 62.5%;
}

body{
font-size: 1.6rem;
line-height: 1.5;
background-color: #eff8ff;


}
@import url('https://fonts.googleapis.com/css2?family=Akaya+Telivigala&family=Noto+Sans+JP&display=swap');





/* =========================================== */
header{
display:flex;
flex-flow: column wrap;
justify-content: center;
align-content: center;
}
header h1{
margin-top: 2rem;
text-align: center;
font-size: 7rem;
font-family: 'Akaya Telivigala', cursive;
}
header hr{
border-style: none none dotted;
border-width: 0.5rem;
border-color: #ebecf1;
width: 10rem;

}

header nav{
display: flex;
width: 30%;
margin: 2rem auto;
justify-content: space-evenly;

}

header nav a{
text-decoration: none;
padding:1rem;
background-color: #999b84;
color: #f4f9f9;
border-radius: 10px;
transition-delay: 2ms;
}

header nav a:hover{
background-color: #96bb7c;
color:#eff8ff;
}


header h2{
text-align:center;
font-size: 3rem;
font-family: 'Noto Sans JP', sans-serif;
}

header p{
padding: 1rem 2rem;
text-align: center;
font-family: 'Noto Sans JP', sans-serif;

}


/* =========================================== */

.bg-img{

height:45vh;
background-image: url("images/simonCat.jpg");
background-repeat: no-repeat;
background-size: cover;

background-position: bottom;
margin: 4rem auto 0rem;


}


/* =========================================== */

.projects{

display:flex;
flex-flow:row wrap;
height: 55vh;
justify-content: space-evenly;
margin-bottom: 0.5rem;

}
.projects-container{
display: flex;
width: 60%;
flex-wrap: wrap;
justify-content: space-around;
align-content: center;
}
.box{
display:flex;
width: 20%;
height: 80%;
flex-direction: column;


padding:1rem;
justify-content: space-evenly;
border-radius: 10px;

}
.box:hover{
border:#d6e0f0 2px solid;

}
.box i{
font-size: 500%;
text-align: center;

}
.box h3{

display: flex;
justify-content: center;
padding: 1rem;
width: 15rem;
border-radius: 10px;
padding: 1rem;
font-size: 100%;
color:#393e46;
background-color: #d9ecf2;
}
@media(max-width:800px){
.box i{
font-size: 300%;
text-align: center;

}
.box h3{

display: flex;
justify-content: center;
text-align: center;
padding: 1rem;
width: 15rem;
border-radius: 10px;
padding: 1rem;
font-size: 1.25rem;
color:#393e46;
background-color: #d9ecf2;
}
}
@media(max-width:600px){
.box h3{
font-size: 1rem;
}
}




.projects p{

font-size: 2rem;
text-align: center;
margin: auto;
width: 30rem;
border-radius: 10px;
border: #d6e0f0 solid 2px;
padding:1rem;
}







/* =========================================== */
footer{
margin-top: 0.5rem;
display:flex;
height: 15vh;
flex-wrap: wrap;
justify-content: center;
align-content: center;
background-color:#999b84;

}
footer a{

text-decoration: none;
padding: 1rem;
font-size: 2rem;
background-color: #beca5c;
border-radius: 10px;
}