diff --git a/index.css b/index.css index 16921e5..37a851e 100755 --- a/index.css +++ b/index.css @@ -12,3 +12,28 @@ body { background-color: #4C4E52; } + +body { + font-family: 'Trebuchet MS', sans-serif; +} + +* { + scrollbar-color: #00ffe4 #ff0000; +} + +a:link { + color: fuchsia; + text-decoration: none; +} +a:visited { + color: orange; + text-decoration: none; +} +a:hover { + color: lime; + text-decoration: none; +} +a:active { + color: pink; + text-decoration: none; +} diff --git a/index.html b/index.html index 448ec49..00ed86c 100755 --- a/index.html +++ b/index.html @@ -1,8 +1,20 @@
-

Goodayy

+

Bonjour

+ Welcome to my personal website! I hope you have a good time
+Feel free to click the links above for more content!
+Also, see below for links to my other situations
+
    + Internal: +
  1. theunderland webpages (internal link)
  2. +
  3. Experiments (internal link)
  4. +
    + External: +
  5. Github (external link)
  6. +
  7. Gitlab (external link)
  8. +
  9. Mastadon.social (external link)
  10. +
- diff --git a/template.js b/template.js index 22e96f8..718cfbf 100755 --- a/template.js +++ b/template.js @@ -1,10 +1,9 @@ let div = document.getElementById('main'); -let divText = div.textContent || div.innerText; +let divText = div.innerHTML; console.log(divText); -let newPageHTML = ` - +let newPageHTML = ` DeaDvey's Domain @@ -12,15 +11,14 @@ let newPageHTML = ` -
- +
+
Home page Blogs Videos
${divText}
- -` + ` document.body.innerHTML = newPageHTML