Main Page

From RexKraft
Revision as of 11:39, 10 April 2024 by Rexmen (talk | contribs)
Jump to navigation Jump to search

Welcome to the official RexKraft Wiki, your ultimate resource for all things related to our Minecraft server! Led by the community and maintained by passionate players like you, our goal is to provide accurate and comprehensive information to enhance your RexKraft experience.

Just like the vast worlds of Minecraft, our Wiki is constantly evolving. We're committed to delivering the most up-to-date and relevant content to our players, ensuring that you have everything you need to thrive in our virtual realm.

We value transparency and collaboration, and we encourage you to get involved in improving the Wiki. Whether you spot missing details, have suggestions for enhancements, or simply want to contribute your knowledge, your input is invaluable to us.

Together, let's make the RexKraft Wiki a treasure trove of knowledge for all adventurers who dare to explore our server. Dive in, discover, and embark on your epic journey with us!

Got feedback or want to contribute? Don't hesitate to reach out and make your mark on the RexKraft Wiki.


The RexKraft Wiki Team


<!DOCTYPE html> <html> <head> <style> /* Style the tab buttons */ .tab {

 overflow: hidden;
 border: 1px solid #ccc;
 background-color: #f1f1f1;

}

/* Style the buttons inside the tab */ .tab button {

 background-color: inherit;
 float: left;
 border: none;
 outline: none;
 cursor: pointer;
 padding: 14px 16px;
 transition: 0.3s;

}

/* Change background color of buttons on hover */ .tab button:hover {

 background-color: #ddd;

}

/* Create an active/current tablink class */ .tab button.active {

 background-color: #ccc;

}

/* Style the tab content */ .tabcontent {

 display: none;
 padding: 6px 12px;
 border: 1px solid #ccc;
 border-top: none;

} </style> </head> <body>

 <button class="tablinks active" onclick="openFeature(event, 'feature1')">Feature 1
<img src="image1.jpg" alt="Feature 1"></button> <button class="tablinks" onclick="openFeature(event, 'feature2')">Feature 2
<img src="image2.jpg" alt="Feature 2"></button>

Feature 1

Detailed information about Feature 1 goes here.

Feature 2

Detailed information about Feature 2 goes here.

<script> function openFeature(evt, featureName) {

 var i, tabcontent, tablinks;
 tabcontent = document.getElementsByClassName("tabcontent");
 for (i = 0; i < tabcontent.length; i++) {
   tabcontent[i].style.display = "none";
 }
 tablinks = document.getElementsByClassName("tablinks");
 for (i = 0; i < tablinks.length; i++) {
   tablinks[i].className = tablinks[i].className.replace(" active", "");
 }
 document.getElementById(featureName).style.display = "block";
 evt.currentTarget.className += " active";

} </script>

</body> </html>