Skip to content

Commit

Permalink
Uploading what I had already
Browse files Browse the repository at this point in the history
  • Loading branch information
UPSxACE committed Feb 17, 2022
1 parent 5b1dea7 commit 2c9ac50
Show file tree
Hide file tree
Showing 9 changed files with 1,281 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/vendor
/.idea
8 changes: 8 additions & 0 deletions footer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
</div>

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.js"></script>

<?php wp_footer();?>
</body>

</html>
68 changes: 68 additions & 0 deletions header.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- This website was coded LINE by LINE by: Eduardo Botelho ^^ -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- important to make website responsive -->
<title>Eduardo Botelho</title>

<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.css" rel="stylesheet">
<link href="<?php echo get_template_directory_uri(); ?>/style.css" rel="stylesheet">
<script>
function switchTab(tabID, contactID) {
var tab = document.getElementById(tabID)
if (tab.classList.contains("active")){

} else {
var hamburguer = document.getElementById("navbarSupportedContent");
hamburguer.classList.remove("show")
if (hamburguer.classList.contains("collapsing")){
setTimeout(() => { hamburguer.classList.remove("show") }, 200);
}

var triggerElement = document.getElementById(tabID)
var tabTrigger = new bootstrap.Tab(triggerElement)
tabTrigger.show();

var ListActives = document.getElementsByClassName("active")
for(let i = 0; i< ListActives.length; i++){
ListActives[i].classList.remove("active");
}

var triggerElement2 = document.getElementById(tabID)
triggerElement2.classList.add("active");

};





};

function unshow(tabID){


}
</script>
<script src="https://kit.fontawesome.com/13b7256d55.js" crossorigin="anonymous"></script>


<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Alatsi&display=swap" rel="stylesheet">


<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Catamaran:wght@300;400;500;700;900&display=swap" rel="stylesheet">

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700&display=swap" rel="stylesheet">


<?php wp_head();?>
</head>
<body>
<div class="main">
Binary file added img/pic.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/pic2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/square.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/square2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
373 changes: 373 additions & 0 deletions index.php

Large diffs are not rendered by default.

Loading

0 comments on commit 2c9ac50

Please sign in to comment.