Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
cozmo14047 authored May 10, 2024
1 parent b44b9c9 commit 12ea4f0
Showing 1 changed file with 43 additions and 1 deletion.
44 changes: 43 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,51 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<title>Jack Gu - Andga Gu</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
}
.container {
width: 80%;
margin: 0 auto;
text-align: center;
padding-top: 50px;
}
h1 {
color: #333;
font-size: 3rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
animation: pulse 1.5s infinite alternate;
}
p {
color: #666;
font-size: 1.2rem;
}
address {
font-style: normal;
color: #888;
font-size: 1rem;
margin-top: 20px;
}
@keyframes pulse {
0% { transform: scale(1); }
100% { transform: scale(1.05); }
}
</style>
</head>
<body>

<div class="container">
<h1>Jack Gu aka Andga Gu</h1>
<p>6 Grey St, Feilding</p>
<address>
<!-- You can include additional contact information here if needed -->
</address>
</div>

</body>
</html>

0 comments on commit 12ea4f0

Please sign in to comment.