Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
65 commits
Select commit Hold shift + click to select a range
eb058a1
tic.tac.toe 1st attempt
denacho Sep 18, 2019
7a5e777
header tictactoe
denacho Sep 19, 2019
736f61e
tic tac toe progress
denacho Sep 19, 2019
7968f92
update the board
denacho Sep 19, 2019
377e371
revise the code
denacho Sep 19, 2019
b80605b
Create Week2:Dena
denacho Sep 24, 2019
7f90f1a
Delete Week2:Dena
denacho Sep 24, 2019
98644b7
Header of my own webpage
denacho Sep 24, 2019
0f689c6
Create header
denacho Sep 24, 2019
0d722fd
Delete header
denacho Sep 24, 2019
cdab0f9
Delete Header
denacho Sep 24, 2019
413bedc
Create index.html
denacho Sep 24, 2019
8e4e719
Create index.html
denacho Sep 24, 2019
20d38a8
Header trying
denacho Sep 24, 2019
1fc425c
second attempt - body
denacho Sep 24, 2019
49aa946
creating header
denacho Sep 24, 2019
53d171f
section news letter
denacho Sep 24, 2019
4589f08
section box added
denacho Sep 24, 2019
e6a0a52
Image spotify added
denacho Sep 24, 2019
f1316da
trying to add image
denacho Sep 24, 2019
d53d7cc
added from Inet
denacho Sep 24, 2019
c3c355a
spotify logo again
denacho Sep 24, 2019
5284c8f
adding 3 images
denacho Sep 24, 2019
b0ba1a6
footer added
denacho Sep 24, 2019
abd9d25
Create style.css
denacho Sep 24, 2019
2a58ba5
Delete style.css
denacho Sep 24, 2019
58c43d5
css header
denacho Sep 24, 2019
b914cc6
Merge remote-tracking branch 'origin/master'
denacho Sep 24, 2019
4e75ea6
css attempt
denacho Sep 24, 2019
b9b6b40
css header
denacho Sep 24, 2019
bf5fa63
linked html & css
denacho Sep 24, 2019
d0ff640
hover
denacho Sep 24, 2019
31ea145
bg-img added
denacho Sep 24, 2019
7259df9
adding email button
denacho Sep 26, 2019
29d2551
adding about.html
denacho Sep 26, 2019
ed61290
styling about page
denacho Sep 26, 2019
bf1ddf7
adding services.html
denacho Sep 26, 2019
e0ec1fe
service.html
denacho Sep 26, 2019
a52246c
adding service.html
denacho Sep 26, 2019
56d4d53
changing Travel - Service
denacho Sep 26, 2019
b6eb0f2
update Service
denacho Sep 26, 2019
3417e17
splitting all the folders
denacho Sep 26, 2019
0d47001
adding img
denacho Sep 26, 2019
af5abe3
changing pict
denacho Sep 26, 2019
c574a2e
coba lagi, image nya
denacho Sep 26, 2019
7e81705
coba image lagi
denacho Sep 26, 2019
f4e340c
ini lagi
denacho Sep 26, 2019
1cca488
trying image again
denacho Sep 26, 2019
ec2bf71
coba week-3
denacho Oct 1, 2019
d13c290
adding style.css
denacho Oct 1, 2019
fd2df08
adding style.css
denacho Oct 1, 2019
e3a4798
changing the code
denacho Oct 1, 2019
dc25021
changing name of css
denacho Oct 1, 2019
f926913
s+o 1824
denacho Oct 1, 2019
3825ccb
changing index.html
denacho Oct 1, 2019
6d38faf
monster image added
denacho Oct 1, 2019
d05e2ee
images added
denacho Oct 1, 2019
5722382
coba coba iseng
denacho Oct 1, 2019
d6989df
ini lupa apa yah
denacho Oct 3, 2019
af33970
coba sendiri
denacho Oct 3, 2019
0702cb0
ini coba lagi
denacho Oct 3, 2019
3f10351
trying once again
denacho Oct 3, 2019
5eeb409
trying again
denacho Oct 4, 2019
832ccf2
coba coba lagi
denacho Oct 4, 2019
9e4b606
erasing
denacho Oct 4, 2019
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 homework/.DS_Store
Binary file not shown.
Binary file added homework/week-1-project/.DS_Store
Binary file not shown.
11 changes: 11 additions & 0 deletions homework/week-1-project/1-head-and-header/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<div class="header">
<h1> Tic Tac Toe </h1>
</div>

<div class="controls">
<h3> Choose to play X or O </h3>
<form action="#">
<input class="checkBox" type="checkbox"> X Player
<input class="checkBox" type="checkbox"> O Player
</form>
</div>
10 changes: 10 additions & 0 deletions homework/week-1-project/1-head-and-header/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
body {
font-family: Helvetica, Arial, sans-serif;
background-color: #EFD1C6;
}

.header h1 {
color: black;
font-size: 5rem;
text-align: center;
}
2 changes: 2 additions & 0 deletions homework/week-1-project/2-rules-of-the-game/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

<h2>a paper-and-pencil game for two players, X and O. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row wins the game.</h2>
6 changes: 6 additions & 0 deletions homework/week-1-project/2-rules-of-the-game/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

h2 {
text-align: center;
font-size:"6"
color: black;
}
41 changes: 41 additions & 0 deletions homework/week-1-project/3-unplayable-board/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<html>

<body onload="mode();">
<div id="screen">
<h1 class="h1" align="center">Please Choose Game Mode</h1>
<select id="mode">
<option Selected>Choose Mode</option>
<option value="1">Computer Vs Human</option>
<option value="2">Human Vs Human</option>
<option disabled value="3">Computer Vs Computer (comming soon)</option>
</select>
</div>
<h1>Tic Tac Toe </h1>
<div id="reset"></div>
<button class="btn d" id="draw">Draw!</button>
<button class="btn l" id="loss">You Lost!</button>
<button class="btn w" id="win">You Won!</button>
<button class="btn w1" id="p2win">Player 1 (O)Won!</button>
<button class="btn w1" id="p1win">Player 2 (X)Won!</button>
<button class="btn r" id="resetbtn" onclick="resetclick()">Reset</button>
<div id="turn" style="display:none;">
<span id="p1" class="p1">Player2's (X)Turn</span>
<span id="p2" class="p2">Player1's (O)Turn</span></div>
<div id="turnc" style="display:none;">
<span id="ct" class="p1">Computer's' Turn</span>
<span id="yt" class="p2">Your Turn</span></div>
<span id="tt"></span>
<form align="center" >
<input type="button" id="b1" value=" " onclick="btn1(mode)">
<input type="button" id="b2" value=" " onclick="btn2(mode)">
<input type="button" id="b3" value=" " onclick="btn3(mode)"><br />
<input type="button" id="b4" value=" " onclick="btn4(mode)">
<input type="button" id="b5" value=" " onclick="btn5(mode)">
<input type="button" id="b6" value=" " onclick="btn6(mode)"><br />
<input type="button" id="b7" value=" " onclick="btn7(mode)">
<input type="button" id="b8" value=" " onclick="btn8(mode)">
<input type="button" id="b9" value=" " onclick="btn9(mode)">
</form>

</body>
</html>
122 changes: 122 additions & 0 deletions homework/week-1-project/3-unplayable-board/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
body {
background-color:#000;
}
h1{
color:#4CAF50;
text-align:center;
text-decoration:underline ;
}
.h1{
position:fixed;
top:180px;
align:center;
}
#tt{
position:fixed;
color:#4CAF50;
left:40%;
top:330px;
}
#screen{
position:fixed;
width:100%;
height:1000px;
background-color:#0f0f0f;
z-index:1;
align:center;
}
select{
background-color: #4CAF50;
border: none;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
position:absolute;
top:300px;
left:30%;
height:40px;
width:40%;
}
input{
width:80px;
height:80px;
background-color:#4CAF50;
color:#fff;
font-size:50px;
}
#reset{
position:fixed;
width:100%;
opacity:0;
display:none;
background-color:#000;
height:1000px;
}
.vote{
color:#fff;
position:fixed;
bottom:15px;
font-size:20px;
font-style: oblique;
}
.btn{
border: none;
position:fixed;
color: white;
left:30%;
display:none;
padding: 15px 32px;
width:150px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
height:40px;
font-size:20px;
}
.w1{
top:350px;
background-color: #0cf;
color:#000;
width:200px;
left:20%;
}
.p1{
position:fixed;
color:#4CAF50;
left:10px;
top:330px;
display:none;
}
.p2{
position:fixed;
color:#4CAF50;
right:10px;
top:330px;
}
.r{
z-index:1;
top:400px;
background-color: #4CAF50;
}
.l{
top:350px;
background-color: red;
}
.w{
top:350px;
background-color: #0cf;
color:#000;
}
.vote a{
color:#4CAF50;
}
.d{
z-index:1;
top:350px;
background-color: #fff;
color:#000;
}
17 changes: 17 additions & 0 deletions homework/week-1-project/4-playable-board/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<table>
<tr>
<td></td>
<td class="vert"></td>
<td></td>
</tr>
<tr>
<td class="hori"></td>
<td class="vert hori"></td>
<td class="hori"></td>
</tr>
<tr>
<td></td>
<td class="vert"></td>
<td></td>
</tr>
</table>
15 changes: 15 additions & 0 deletions homework/week-1-project/4-playable-board/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
td {
width: 100px;
height: 100px;
}
table {
margin: 5px auto;
}
.vert {
border-left: 2px solid black;
border-right: 2px solid black;
}
.hori {
border-top: 2px solid black;
border-bottom: 2px solid black;
}
Binary file added homework/week-2-project/.DS_Store
Binary file not shown.
5 changes: 0 additions & 5 deletions homework/week-2-project/0-blank-page-setup/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,4 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./style.css">
</head>

<body>

</body>

</html>
13 changes: 13 additions & 0 deletions homework/week-2-project/1-head and header/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name= "viewport" content="width=device-width">
<link rel="stylesheet" href= style.css>
<meta name="description" content="lagi coba bikin mirip webpage nya Gita">
<meta name="keywords" content="Web design, gatau bener apa engga">
<meta name="author" content="Dena Cho">

<title> A Cup of Tea </title>

</head>
44 changes: 44 additions & 0 deletions homework/week-2-project/1-head and header/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/* Header **/
Header {
Background: #2F586D;
color: #ffffff;
padding-top : 30px;
min-height: 70px;
border-bottom: #E94181 3px solid ;

}

header a {
color: #ffffff;
text-decoration:none;
text-transform: uppercase;
font-size: 16px;
}

header li{
display: inline;
padding: 0 20px 0 20px;
}

header #branding {
float:left;
}

header #branding h1{
margin: 0;
}

header nav {
float:right;
margin-top: 10px;
}

header .highlight, header .current a{
color: #e8491d;
font-weight: bold;

}
header a:hover{
color: #cccccc;
font-weight:bold;
}
21 changes: 21 additions & 0 deletions homework/week-2-project/2-showcase/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name= "viewport" content="width=device-width">
<link rel="stylesheet" href= style.css>
<meta name="description" content="lagi coba bikin mirip webpage nya Gita">
<meta name="keywords" content="Web design, gatau bener apa engga">
<meta name="author" content="Dena Cho">

<title> A Cup of Tea </title>

<body>
<section id="showcase">
<div class="container">
<h1> Content Creator </h1>
<p> Lorem ipsum coba dulu ah </p>
</div>
</section>
</body>
</html>
31 changes: 31 additions & 0 deletions homework/week-2-project/2-showcase/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
body {
font: 15px/1.5 Arial, Helvetica, sans-serif;
padding: 0;
margin: 0;
background-color: #EBEDEE;
}

/* Global */
.container {
width: 80%;
margin: auto;
overflow:hidden;
}

#showcase{
min-height: 400px;
background: url('gambar.jpg') no repeat 0 -400px;
text-align: center;
color: #ffffff;
}

#showcase h1{
margin-top:100px;
font-size:55px;
margin-bottom:10px;
}

#showcase p{
font-size:20px;
}

26 changes: 26 additions & 0 deletions homework/week-2-project/3-newsletter/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name= "viewport" content="width=device-width">
<link rel="stylesheet" href= style.css>
<meta name="description" content="lagi coba bikin mirip webpage nya Gita">
<meta name="keywords" content="Web design, gatau bener apa engga">
<meta name="author" content="Dena Cho">

<title> A Cup of Tea </title>

</head>

<body>
<section id="newsletter">
<div class="container">
<h1> Subscribe To My New Article</h1>
<form>
<input type="email" placeholder="Enter Email...">
<button type="submit" class="button_1">Subscribe </button>
</form>
</div>
</section>

</body>
Loading