-
Notifications
You must be signed in to change notification settings - Fork 12
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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> | ||
</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> |
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 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
} | ||||||
|
||||||
.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){ | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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; | ||||||
} | ||||||
|
||||||
} |
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
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here are a few grammar suggestions for you.
Suggested change
|
||||||||||||||||||
</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> |
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
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
|
||||||||||||||
</div> | ||||||||||||||
</section> | ||||||||||||||
</body> | ||||||||||||||
</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
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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> |
There was a problem hiding this comment.
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.