Game_Dev_Blog/src/index.html
flamez 55e818c450
All checks were successful
On_Push / build (push) Successful in 19s
Update src/index.html
2025-02-13 20:07:06 +00:00

32 lines
703 B
HTML

<!DOCTYPE html>
<html>
<head>
<title> Cian O'Shaughnessy's Website </title>
</head>
<h2>Tabs</h2>
<p>Click on the buttons inside the tabbed menu:</p>
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'Home')">Home</button>
<button class="tablinks" onclick="openCity(event, 'Blogs')">Blogs</button>
<button class="tablinks" onclick="openCity(event, 'Links')">Links</button>
</div>
<div id="Home" class="tabcontent">
<h3>Home</h3>
<p>Welcome to my Page</p>
</div>
<div id="Blogs" class="tabcontent">
<h3>Blogs</h3>
<p> Here are my Blogs.</p>
</div>
<div id="Links" class="tabcontent">
<h3>Links</h3>
<p>The links i use.</p>
</div>
</body>
</html>