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
Binary file added .DS_Store
Binary file not shown.
Binary file added Kwok_Eugene/.DS_Store
Binary file not shown.
17 changes: 17 additions & 0 deletions Kwok_Eugene/mockup1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Webpage</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<div>Galvanize Contact Information</div>
<ul>
<li>Zubair: zubair.desai@galvanize.com</li>
<li>Elie: elie@galvanize.com</li>
<li>Matt: matt@galvanize.com</li>
</ul>
</body>
</html>
11 changes: 11 additions & 0 deletions Kwok_Eugene/mockup1/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
html,
div {
font-size: 1.2em;
margin-top: 20px;
margin-left: 12px;
}

ul {
list-style: none;
margin-top: 0px;
}
Binary file added Kwok_Eugene/mockup2/.DS_Store
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions Kwok_Eugene/mockup2/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Webpage</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<h1>Galvanize Profile Page</h1>
<img src="Screen Shot 2015-08-06 at 2.32.08 AM.png">
<div>(Photo Caption)</div>
</body>
</html>
14 changes: 14 additions & 0 deletions Kwok_Eugene/mockup2/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
h1 {
margin-top: 30px;
margin-left: 18px;
margin-bottom: 50px;
}

img {
margin-left: 140px;
}

div {
margin-left: 150px;
font-size: 130%;
}
25 changes: 25 additions & 0 deletions Kwok_Eugene/mockup3/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Webpage</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<h1>Details:</h1>
<ul id="pets">
<li>Pets:</li><li>Puppies</li><li>Cats</li><li>Kittens</li><li>Dogs</li>
<li>Capybaras</li><li>Giraffes</li><li></li>
</ul>

<ul id="cities">
<li>Cities:</li><li>San Francisco</li><li>New York</li><li>San Jose</li>
<li>Patterson</li><li>Los Angeles</li><li>Palo Alto</li><li>Sausalito</li>
</ul>

<br></br>
<div id="last">View Additional Details</div>

</body>
</html>
40 changes: 40 additions & 0 deletions Kwok_Eugene/mockup3/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
h1 {
margin-top: 30px;
margin-left: 18px;
margin-bottom: 0px;
}

ul {
display: inline-block;
list-style: none;
margin-bottom: 0px;
border-style: solid;
padding-left: 0px;
}

#last {
border-style: solid;
margin-left: 50px;
margin-right: 1045px;
}

#pets {
margin-left: 40px;
margin-top: 0px;
padding-bottom: 0px;
}

#cities {
margin-left: 20px;
}











37 changes: 37 additions & 0 deletions Kwok_Eugene/mockup4/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Webpage</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<h2>Your Information</h2>
<form action="index2.html">
<p>
<label for="name">Name: </label>
<input type="text" id="name" name="name"></input>
</p>
<p>
<label for="email">Email: </label>
<input type="text" id="email" name="email"></input>
</p>
<p>
<label for="phone">Phone: </label>
<input type="text" id="phone" name="phone"></input>
</p>
<p id="checkbox">
<label for "cb1">From San Francisco</label>
<input type="checkbox" id="cb1" name="SF" value="YES">
</p>
<p id="checkbox">
<label for "cb2">Not From San Francisco</label>
<input type="checkbox" id="cb2" name="NOT_SF" value="YES">
</p>
<p>
<input type="submit" id="submit"></input>
</p>
</form>
</body>
</html>
Empty file added Kwok_Eugene/mockup4/index2.html
Empty file.
14 changes: 14 additions & 0 deletions Kwok_Eugene/mockup4/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
html {
margin-left: 50px;
margin-top: 50px;
}

#checkbox {
margin-top: 0px;
display: inline-block;
}

#cb1,
#cb2 {
float: left
}
64 changes: 64 additions & 0 deletions Kwok_Eugene/mockup5/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Webpage</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<h1>My Awesome Table</h1>
<table>
<thead id="color">
<th>Firstname</th>
<th>Lastname</th>
<th>Petname</th>
<th>City</th>
</thead>
<tbody>
<tr id="color2">
<td>John</td>
<td>Doe</td>
<td>Fifi</td>
<td>Denver</td>
</tr>
<tr>
<td>Jane</td>
<td>Doe</td>
<td>Fido</td>
<td>Santa Fe</td>
</tr>
<tr id="color2">
<td>Jennifer</td>
<td>Smith</td>
<td>Pikachu</td>
<td>Los Angeles</td>
</tr>
<tr>
<td>Stephen</td>
<td>Hawking</td>
<td>Furby</td>
<td>New York</td>
</tr>
<tr id="color2">
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr id="color2">
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</body>
</html>
23 changes: 23 additions & 0 deletions Kwok_Eugene/mockup5/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
html {
margin-left: 50px;
margin-top: 15px;
}
table, th {
font-size: 115%;
border: 1px solid black;
border-collapse: collapse;
}

td {
border-left: 1px solid black;
border-right: 1px solid black;
height: 25px;
}

#color {
background-color: grey;
}

#color2 {
background-color: #E0DDE2;
}
Binary file modified mockup3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.