This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import './style.css' | |
| import img from './img.jpeg' | |
| import github from './github.png' | |
| import homePage from '../src/home.js' | |
| import menuPage from '../src/menu.js' | |
| import contactPage from '../src/contact.js' | |
| const gitImg = new Image(); | |
| gitImg.src = github; | |
| gitImg.classList.add("github"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export default function contactPage() { | |
| const main = document.querySelector(".main"); | |
| main.innerHTML = ` | |
| <div class="content"> | |
| <div style="display:flex;justify-content:center;align-items: center;margin-top: 0;"> | |
| <h1>Connect with us </h1><img src="../src/call.png" class="contact-img" alt="caller"> | |
| </div> | |
| <div class="email"> Email - EatyDeez@gmail.com</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link rel="stylesheet" href="learn.css"> | |
| <title>Document</title> | |
| </head> | |
| <body> |
NewerOlder