Game_Dev_Blog/src/index.html

33 lines
703 B
HTML
Raw Normal View History

2025-02-12 18:49:34 +00:00
<!DOCTYPE html>
2025-02-13 19:04:06 +00:00
<html>
<head>
2025-02-13 19:08:58 +00:00
<title> Cian O'Shaughnessy's Website </title>
2025-02-13 19:04:06 +00:00
</head>
2025-02-13 20:06:40 +00:00
<h2>Tabs</h2>
<p>Click on the buttons inside the tabbed menu:</p>
2025-02-13 19:04:06 +00:00
2025-02-13 20:06:40 +00:00
<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>
2025-02-13 19:04:06 +00:00
<div id="Home" class="tabcontent">
<h3>Home</h3>
2025-02-13 20:06:40 +00:00
<p>Welcome to my Page</p>
2025-02-13 19:04:06 +00:00
</div>
<div id="Blogs" class="tabcontent">
<h3>Blogs</h3>
2025-02-13 20:06:40 +00:00
<p> Here are my Blogs.</p>
2025-02-13 19:04:06 +00:00
</div>
<div id="Links" class="tabcontent">
<h3>Links</h3>
2025-02-13 20:06:40 +00:00
<p>The links i use.</p>
2025-02-12 21:26:50 +00:00
</div>
2025-02-13 20:06:40 +00:00
2025-02-13 19:04:06 +00:00
</body>
2025-02-12 18:49:34 +00:00
</html>