Skip to content

Commit 7a9a8f5

Browse files
committed
minor edit
1 parent f459948 commit 7a9a8f5

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

index.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,15 @@
1111
<h1>Welcome to My Github</h1>
1212
<p>This is a guide</p>
1313
<div class="button-container">
14-
<button onmouseover="changeColor(this)" onmouseout="resetColor(this)" onclick="showMessage()">Show Message</button>
15-
1614
<a href="https://danielchen3.github.io/usa_map" target="_blank">
17-
<button onmouseover="changeColor(this)" onmouseout="resetColor(this)">Go to Map</button>
15+
<button onmouseover="changeColor(this)" onmouseout="resetColor(this)">USA Map</button>
16+
</a>
17+
18+
<a href="https://danielchen3.github.io/blog" target="_blank">
19+
<button onmouseover="changeColor(this)" onmouseout="resetColor(this)">My Blog</button>
1820
</a>
1921
</div>
22+
<p id="progress_warning">!!! Warning, This repository is currently under development</p>
2023

2124
<script>
2225
function showMessage() {

style.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,15 @@ button:hover {
3636
}
3737
a {
3838
text-decoration: none;
39+
}
40+
41+
42+
#progress_warning {
43+
color: #ff4444;
44+
font-weight: bold;
45+
padding: 10px;
46+
margin: 20px auto;
47+
border: 2px solid #ff4444;
48+
border-radius: 5px;
49+
display: inline-block;
3950
}

0 commit comments

Comments
 (0)