Scavenger Hunt
Category
Question
Hint
Solution
<body>
<div class="container">
<header>
<h1>Just some boring HTML</h1>
</header>
<button
class="tablink"
onclick="openTab('tabintro', this, '#222')"
id="defaultOpen"
>
How
</button>
<button class="tablink" onclick="openTab('tababout', this, '#222')">
What
</button>
<div id="tabintro" class="tabcontent">
<h3>How</h3>
<p>How do you like my website?</p>
</div>
<div id="tababout" class="tabcontent">
<h3>What</h3>
<p>
I used these to make this site: <br />
HTML <br />
CSS <br />
JS (JavaScript)
</p>
<!-- Here's the first part of the flag: picoCTF{t -->
</div>
</div>
</body>Flag
Last updated