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

33 lines
757 B
HTML

<!DOCTYPE html>
<html>
<head>
<title> Cian O'Shaughnessy's Website </title>
<link rel="stylesheet" href= "style.css">
</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>