Skip to content

Instantly share code, notes, and snippets.

@sdesalas
Forked from santiagocodes/index.html
Last active March 28, 2019 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sdesalas/45c477134df7c07057a0344fed3ecb99 to your computer and use it in GitHub Desktop.
Save sdesalas/45c477134df7c07057a0344fed3ecb99 to your computer and use it in GitHub Desktop.
findThePrecious.com MC solution
<!DOCTYPE html>
<html lang="zxx">
<head>
<meta charset="UTF-8">
<title>findThePrecious.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
</head>
<body>
<nav>
<ul>
<li><a href="#findThePrecious">FindThePrecious.com</a></li>
<li><a href="#fellows">Fellows</a></li>
<li><a href="#theRing">The Ring</a></li>
<li><a href="#getMyReward">Get my reward</a></li>
<li><a href="#bestHunters">Best hunters</a></li>
<li><a href="#joinTheArmy">Join the army</a></li>
<li><a href="#contactUs">Contact us</a></li>
</ul>
</nav>
<header>
<img src="https://via.placeholder.com/140" alt="picture">
<h1>Dangerous fellowship tries to destroy the ring</h1>
<h2>Orcs, Goblins, Balrogs, protect your master Sauron !</h2>
</header>
<section>
<h3 id="fellows">Fellows wanted dead (or alive if you want to eat them later).</h3>
<div class="fellowsButtons">
<button>Most wanted</button>
<button>Most dangerous</button>
<button>Already captured</button>
</div>
<ul>
<li class="theFellows">
<img src="https://via.placeholder.com/140" alt="wizard">
<em>The Wizard</em>
<p>Small description...</p>
</li>
<li class="theFellows">
<img src="https://via.placeholder.com/140" alt="hobbit #3">
<em>Hobbit #3</em>
<p>Small description...</p>
</li>
<li class="theFellows">
<img src="https://via.placeholder.com/140" alt="yummy dwarf">
<em>Yummy Dwarf</em>
<p>Small description...</p>
</li>
</ul>
</section>
<section>
<h3 id="getMyReward">I have captured one of them, how to get my reward?</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<img src="https://via.placeholder.com/140" alt="reward pic">
<button id="contact">Contact us</button>
</section>
<section>
<h3 id="bestHunters">Best Hunters</h1>
<ul>
<li class=theBestHunters>
<img src="https://via.placeholder.com/70" alt="elveskiller22">
<h4>ElversKiller22</h4>
<p>2 captures - <a href="">Profile</a></p>
<div class="fb-like"
data-href="https://www.your-domain.com/your-page.html"
data-layout="standard"
data-action="like"
data-show-faces="true">
</div>
<li class=theBestHunters>
<img src="https://via.placeholder.com/70" alt="Goblin45">
<h4>Goblin45</h4>
<p>1 captures - <a href="">Profile</a></p>
<div class="fb-like"
data-href="https://www.your-domain.com/your-page.html"
data-layout="standard"
data-action="like"
data-show-faces="true">
</div>
</ul>
</section>
<h3 id=theRing>About the ring</h4>
<div class="box">
<h4>Ring Capabilities</h4>
<p>What can our master Sauron do with the ring?</p>
<table>
<tr>
<td>Feature</td>
<td>Description</td>
</tr>
<tr>
<td>Main</td>
<td>One ring to rule them all</td>
</tr>
<tr>
<td>Invisibility</td>
<td>You can't see me</td>
</tr>
<tr>
<td>Power</td>
<td>Ddestroy the world</td>
</tr>
</table>
</div>
<div class="box">
<h4>Why the ring is awesome?</h4>
<p>My preciooooooousssss! Hrk Hrk, we want our preciooooooousssss!!</p>
<p id="Gollum">Gollum</p>
<img src="https://via.placeholder.com/110" alt="Gollum">
</div>
<section>
<h3 id="joinTheArmy">Join Mordor Army, we need you!</h3>
<img src="https://via.placeholder.com/140" alt="army">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<button id="Sauron">More info on SauronRulesThemAll.com</button>
</section>
<section>
<h1 id="contactUs">Contact us</h1>
<form action="/action_page.php">
<input type="text" id="email">
<input type="text" id="address">
<select id="seen">
<option value="seen">I have seen one of them</option>
<option value="notSeen">I have not seen one of them</option>
<option value="maybe">Maybe</option>
</select>
<textarea id="message" name="message" placeholder="Your message" style="height:170px"></textarea>
<input type="submit" value="Submit">
</form>
</section>
<footer>
<div>
<ul>
<li>About us</li>
<li>Fellows</li>
<li>Join our army</li>
</ul>
</div>
<div>
<ul>
<li>FAQ</li>
<li>Reward conditions</li>
<li>Legal mentions</li>
</ul>
</div>
<div>
<p>Sauron4Ever.com</p>
<p>Follow him also on twitter</p>
</div>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment