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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
Binary file added assets/images/thumbsups.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 22 additions & 15 deletions hidden/secret.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
<head>
<title>secret page</title>
<link rel="icon" href="../assets/images/dangelo.jpg">
<link rel="stylesheet" href="../style.css">
</head>
<body>
<div class="main-content">
<img src="../assets/images/dangelo.jpg">
<audio autoplay controls>
<source src="../assets/musics/brownsugar.mp3" type="audio/mpeg">
</audio>
<h1>you found the secret d'angelo page</h1>
<h2>leave a mark on this page to get extra points in judging</h2>
</div>

</body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<title>secret page</title>
<link rel="icon" href="../assets/images/dangelo.jpg" />
<link rel="stylesheet" href="../style.css" />
</head>
<body>
<div class="main-content">
<img src="../assets/images/dangelo.jpg" />
<audio autoplay controls>
<source src="../assets/musics/brownsugar.mp3" type="audio/mpeg" />
</audio>
<h1>Secret? Not so secretive anymore...</h1>
<h1> A mark</h1>
<h3>a mark :D</h3>
</div>
</body>
</html>
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
<div class="navbar">
<a href="page1.html">Page 1</a>
<a href="page2.html">Page 2</a>
<a href="hidden\secret.html">Not secret</a>
</div>
<div class="main-content">
<h1 style="color: #fff;font-size: 40px;font-style: italic; text-align: center;">Welcome to ACM</h1>
<img src="assets/images/ubacm.png" style="width: 300px;">
<img src="assets/images/ubacm.png" alt="hi" style="width: 300px;">
</div>
</body>
16 changes: 16 additions & 0 deletions page1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<head>
<title>ACM's Github Workshop</title>
<link rel="icon" href="assets/images/acm-icon.png">
<link rel="stylesheet" href="style.css">
</head>

<body class="index-body">
<div class="navbar">
<a href="page2.html">Page 1</a>
<a href="secret.html">Page 2</a>
</div>
<div class="main-content">
<h1 style="color: #fff;font-size: 40px;font-style: italic; text-align: center;">Welcome to Page 2 I think</h1>
<img src="assets\images\thumbsups.png" style="width: 300px;">
</div>
</body>
1 change: 1 addition & 0 deletions page2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<a href="page2.html">Page 1</a>
6 changes: 3 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.index-body{
background-image: linear-gradient(#88C8FF,#005DC2);
background-image: linear-gradient(#ff88d3,#c2001d);
margin: 0;
height: 97vh;
width: 100vw;
Expand All @@ -9,11 +9,11 @@
flex-direction: row;
align-items: center;
justify-content: center;
background-color: white;
background-color: #503bbd;
height: 50px
}
.navbar a {
color: #005DC2;
color: #e92f70dc;
font-size: 20px;
padding: 10px;
}
Expand Down