Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added into two files #1295

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
153 changes: 152 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
@@ -1 +1,152 @@
/* Compile your LESS file! */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
@media(max-width: 1920px) {
head {
display: block;
margin-left: auto;
margin-right: auto;
background: black;
}
.pic {
text-align: center;
}
h1 {
background: lightblue;
color: blue;
text-align: center;
}
header nav {
text-align: center;
margin-bottom: 25px;
}
button {
color: white;
background-color: blue;
border-color: black;
font-weight: bold;
}
body {
background: black;
}
.top-body {
display: column;
justify-content: space-between;
}
.about-section {
border: 1px solid lightblue;
text-align: center;
margin-bottom: 20px;
}
.skills-list {
border: 1px solid lightblue;
text-align: center;
margin-bottom: 20px;
}
.work-history {
border: 1px solid lightblue;
text-align: center;
margin-bottom: 20px;
}
.walmart {
text-decoration: none;
}
h2 {
color: lightblue;
text-align: center;
}
p1 {
color: blue;
}
footer {
text-align: center;
}
footer p1 {
color: white;
}
footer nav {
text-align: center;
word-spacing: 15px;
margin-top: 25px;
background: lightblue;
font-weight: bold;
}
footer nav a {
color: blue;
}
}
@media(max-width: 500px) {
head {
display: block;
margin-left: auto;
margin-right: auto;
background: lightblue;
}
.pic {
text-align: center;
}
h1 {
background: black;
color: blue;
text-align: center;
}
header nav {
text-align: center;
margin-bottom: 25px;
}
button {
color: white;
background-color: black;
border-color: black;
font-weight: bold;
}
body {
background: white;
}
.top-body {
display: column;
justify-content: space-between;
}
.about-section {
border: 1px solid black;
text-align: center;
margin-bottom: 20px;
}
.skills-list {
border: 1px solid black;
text-align: center;
margin-bottom: 20px;
}
.work-history {
border: 1px solid black;
text-align: center;
margin-bottom: 20px;
}
.walmart {
text-decoration: none;
}
h2 {
color: blue;
text-align: center;
}
p1 {
color: black;
}
footer {
text-align: center;
}
footer p1 {
color: black;
}
footer nav {
text-align: center;
word-spacing: 15px;
margin-top: 25px;
background: black;
font-weight: bold;
}
footer nav a {
color: white;
}
}
59 changes: 51 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,62 @@
<!doctype html>

<html lang="en">
<head>
<meta charset="utf-8">
<head>
<link rel="stylesheet" href="css\index.css">
<meta charset="utf-8">
</head>
<header>

<title>My Resume</title>

<link rel="stylesheet" href="css/index.css">
<title>Latysawane Phommachack Resume</title>
<nav>
<a href=#><button>ABOUT</button></a>
<a href=#><button>HOME</button></a>
<a href=#><button>PROJECTS</button></a>
<a href=#><button>CONTACT</button></a>
</nav>
<div class="pic">
<img src="https://scontent-atl3-1.xx.fbcdn.net/v/t1.0-9/97511500_2603167143343704_4050948802092204032_o.jpg?_nc_cat=109&_nc_sid=0be424&_nc_ohc=LLeKH5tG93IAX_oqtGv&_nc_ht=scontent-atl3-1.xx&oh=3cea8c5ca47cd41aae31b6b35957ef58&oe=5EED483B&dl=1" alt="picture of son" width="160" height="180">
</div>
<h1>Latysawane Phommachack</h1>

<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>

</header>
<body>
<h1>My Resume</h1>
<section class="top-body">
<div class="about-section">
<h2>- ABOUT -</h2>
<p1>Currently still learning web development skills at Lambda School.<br>
Age: 21</p1>
</p1>
</div>
<div class="skills-list">
<h2>- SKILLS -</h2>
<p1>Web Development<br>
4 Years of Customer Service<br>
4 years of Salesfloor Stocker<br>
2 years of Cashier</p1>
</div>
<div class="work-history">
<h2>- WORK HISTORY -</h2>
<p1>WalMart</p>
<p1>October 2016-February 2020</p>
<p1>5511 Murfreesboro Rd, La Vergne, TN 37086<br>
(615) 984-0066
</p1>
</div>
</section>
</body>
<footer>
<h2>- CONTACT ME -</h2>
<p1>EMAIL: [email protected]<br>
PHONE NUMBER: (615)713-6596</p1>
<nav>
<a href=#>ABOUT</a>
<a href=#>HOME</a>
<a href=#>PROJECTS</a>
<a href=#>CONTACT</a>
</nav>
</footer>
</html>
Loading