Skip to content

Commit

Permalink
Update contact.html
Browse files Browse the repository at this point in the history
  • Loading branch information
luiandshoots committed Apr 4, 2024
1 parent fe60395 commit ffc3cbb
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<a href="contact.html" class="w3-bar-item w3-button w3-text-grey w3-hover-black">Contact</a>
</div>
</nav>
</body>

<!-- !PAGE CONTENT! -->
<div class="w3-content" style="max-width:1500px">
Expand All @@ -64,3 +63,23 @@
Message:<br><textarea rows="5" name="message" cols="30"></textarea><br>
<input type="submit" name="submit" value="Submit">
</form>
</body>

<script>
// Toggle grid padding
var x = document.getElementById("myGrid");
if (x.className === "w3-row") {
x.className = "w3-row-padding"
}

// Open and close sidebar
function w3_open() {
document.getElementById("mySidebar").style.width = "100%";
document.getElementById("mySidebar").style.display = "block";
}

function w3_close() {
document.getElementById("mySidebar").style.display = "none";
}

</script>

0 comments on commit ffc3cbb

Please sign in to comment.