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

Accelerate -Cadence #4

Open
wants to merge 1 commit 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
36 changes: 36 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<meta name="description" content="Portfolio">
<meta name="viewport" content='width=device-width, inital-scale=1, shrink-to-fit=no'>
<title>Cadence</title>
<link rel="stylesheet" type="text/css" href="css/style.css">

</head>
<body>
<section>
<header>
<div id="myLinks">
<a class="headerLink" href="index.html">Home</a>
<a class="headerLink" href="about.html">About</a>
<a class="headerLink" href="portfolio.html">Portfolio</a>
<a class="headerLink" href="hobby.html">Hobby</a>
Comment on lines +15 to +18
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can use jquery to make your nav bar reusable on each html page. Here is an example your nav info would be stored in nav.html and then a few lines of code would be added to each html file.

</div>
</header>
<main class="aboutMe">
<div class="background">
<p>Hi, I am Cadence</p>
<p>I live in San Francisco and I graduated in San Francisco State University with a Bachelor degree in Hospitality and Tourism. </p>
<p>I am always curious about how developers make computer listen and react to users' requests.
Therefore, I went to City College to take two-year web development courses. I felt in love with programing and I wanted to learn more.
Later, I studied in programming bootcamp and I learned to build full-stack web and mobile apps. This build my programing foundation
and it provided me a great opportunity to intern in a start-up company to build a financial user dashboard. Now, I have been contimued my programming journey
</p>
</div>
<img src="images/me.jpg" alt="self picture" class='selfPicture'/>
</main>

</section>
</body>
</html>
93 changes: 93 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
body {
background-color:rgb(255, 220, 204);
}


#myLinks {
display:flex;
justify-content: space-around;
}

.headerLink {
text-decoration: none;
font-size: 200%;
color:#8a4016
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
color:#8a4016
color:#8a4016;

}

.introduction {
color: #8a4016;
padding-top: 30%;
}
.characteristics {
display:none;
}

.aboutMe {
font-size: 18px;
color: #8a4016;
}

.selfPicture, .img{
width: 80%;
height:auto;
margin-left: 2%;
}

h1 {
font-size: 20px;
}

.background,.hobby{
color: #8a4016;
}

@media only screen and (min-width: 768px){
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I love that you made the page responsive ! People may be looking at your portfolio on any kind of device! Here is a great resource for media queries !

body {
background:linear-gradient(90deg,rgb(255, 220, 204) 60%,white 40%) ;
}
.introduction-page {
width: 100%;
}

.introduction{
float:left;
width:60%;
padding-top: 9%;
}

.characteristics{
display:flex;
flex-direction: column;
/* float:right; */
margin-right: 5%;


}

.characteristics{
font-size: 50px;
justify-content: space-between;
}
Comment on lines +58 to +70
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these are referencing the same element and can be combined.


span {
font-size:10px
}

.aboutMe, .hobby-page {
margin-top: 10%;
}
.background, .hobby{
float:left;
width:60%;
font-size: 20px;
}

.selfPicture, .hikingPic{
width: 30%;
height:auto;
}
.hikingPic {
float: right;
}

}
36 changes: 36 additions & 0 deletions hobby.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<meta name="description" content="Portfolio">
<meta name="viewport" content='width=device-width, inital-scale=1, shrink-to-fit=no'>
<title>Cadence</title>
<link rel="stylesheet" type="text/css" href="css/style.css">

</head>
<body>

<header>
<div id="myLinks">
<a class="headerLink" href="index.html">Home</a>
<a class="headerLink" href="about.html">About</a>
<a class="headerLink" href="portfolio.html">Portfolio</a>
<a class="headerLink" href="hobby.html">Hobby</a>
</div>
</header>
<section class="hobby-page">
<div class='hobby'>
<p>
I love to living in San Francisco Bay Area, it locates in West Coast and I can view the beautiful Pacific Ocean.
I often go hiking on weekend to see the big ocean and relax myself. I often visit Mori Point Hiking Trail,
it has a very goo good view of Sunset. I can see a clear view.
Comment on lines +23 to +26
Copy link

@tgoslee tgoslee Jul 5, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here are a few grammar suggestions for you.

Suggested change
<p>
I love to living in San Francisco Bay Area, it locates in West Coast and I can view the beautiful Pacific Ocean.
I often go hiking on weekend to see the big ocean and relax myself. I often visit Mori Point Hiking Trail,
it has a very goo good view of Sunset. I can see a clear view.
<p>
I love to live in San Francisco Bay Area, it's located on the West Coast and I can view the beautiful Pacific Ocean.
I often go hiking on the weekend to see the big ocean and relax. I often visit Mori Point Hiking Trail,
it has a very good view of Sunset. I can see a clear view.

</p>
</div>
<div class="hikingPic">
<img src="images/sunset.jpeg" alt="sunset" class="sunset img"/>
<img src="images/twin-peak.jpeg" alt="twin-peak" class="twinPeak img"/>
</div>

</section>
</body>
</html>
Binary file added images/me.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/sunset.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/twin-peak.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<meta name="description" content="Portfolio">
<meta name="viewport" content='width=device-width, inital-scale=1, shrink-to-fit=no'>
<title>Cadence Chen</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

</head>
<body>
<section class="introduction-page">
<header>
<div id="myLinks">
<a class="headerLink" href="index.html">Home</a>
<a class="headerLink" href="about.html">About</a>
<a class="headerLink" href="portfolio.html">Portfolio</a>
<a class="headerLink" href="hobby.html">Hobby</a>
</div>
</header>


<div class="introduction">
<p>Hi, my name is Cadence</p>
<h1>I Build What People Need</h1>
<p>I care about what helps people.</p>
<p> I focus on what people need and build applications that empower and impact people's life</p>
</div>
Comment on lines +25 to +29
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I love these short statements. They are concise and clear.


<div class="characteristics">
<p class=characteristic>Love<span> what you do</span></p>
<p class=characteristic>Care<span> what impact to people life</span></p>
<p class=characteristic>Focus<span> what your motivation</span></p>
Comment on lines +32 to +34
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Make sure you have quotation marks around the class attribute. Also, the parent element would normally have a different class name than the child elements.

Suggested change
<p class=characteristic>Love<span> what you do</span></p>
<p class=characteristic>Care<span> what impact to people life</span></p>
<p class=characteristic>Focus<span> what your motivation</span></p>
<p class="characteristic">Love<span> what you do</span></p>
<p class="characteristic">Care<span> what impact to people life</span></p>
<p class="characteristic">Focus<span> what your motivation</span></p>

</div>
</section>
</body>
</html>
37 changes: 37 additions & 0 deletions portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<meta name="description" content="Portfolio">
<meta name="viewport" content='width=device-width, inital-scale=1, shrink-to-fit=no'>
<title>Cadence</title>
<link rel="stylesheet" type="text/css" href="css/style.css">

</head>
<body>
<header>
<div id="myLinks">
<a class="headerLink" href="index.html">Home</a>
<a class="headerLink" href="about.html">About</a>
<a class="headerLink" href="portfolio.html">Portfolio</a>
<a class="headerLink" href="hobby.html">Hobby</a>
</div>
</header>
<section>
<h1> Build Web Applications to Mobile Applications</h1>
<div class="viewing-party">
<h2>Swap meet</h2>
<p>Swap meet is built to allow each person to swap one of their things with anther person's things</p>
<a href="https://github.com/cadence09/task-list-api">Swap Meet</a>
<p>Techs skills: Python</p>
</div>
<div class="task-api">
<h2>Task List Api</h2>
<p>Task List Api is built to allow users to organze tasks. Users can create, see, update, and delete task.</p>
<a href="https://github.com/cadence09/task-list-api">Task API</a>
<p>Techs skills: Python, Postgres, Flask, Slack API </p>
</div>

</section>
Comment on lines +20 to +35
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keep adding your projects! You have been working on great things!

</body>
</html>