https://kyleayy.bearblog.dev/

Submitted URL:
https://kyleayy.bearblog.dev/
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 3 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Console log messages · 0 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5">
<title>kyle's ramblings (and other misc. stuff)</title>
<link rel="canonical" href="https://kyleayy.bearblog.dev">
<meta name="kyleayy" content="look-for-the-bear-necessities">

<meta name="title" content="kyle's ramblings (and other misc. stuff)">
<meta name="description" content="welcome to kyle's blog!">

<meta property="og:site_name" content="kyle's ramblings (and other misc. stuff)">
<meta property="og:title" content="kyle's ramblings (and other misc. stuff)">
<meta property="og:type" content="website">
<meta property="og:url" content="https://kyleayy.bearblog.dev">
<meta property="og:description" content="welcome to kyle's blog!">
<meta property="og:image" content="https://i.ibb.co/vzF711j/takachair2.png">

<meta property="twitter:card" content="summary">
<meta property="twitter:url" content="https://kyleayy.bearblog.dev">
<meta property="twitter:title" content="kyle's ramblings (and other misc. stuff)">
<meta property="twitter:description" content="welcome to kyle's blog!">
<meta property="twitter:image" content="https://i.ibb.co/vzF711j/takachair2.png">

<script type="application/ld+json">
  {
    "@context": "http://schema.org",
    "@type": "website",
    "name": "kyle&#x27;s ramblings (and other misc. stuff)",
    "url": "https://kyleayy.bearblog.dev",
    "description": "welcome to kyle&#x27;s blog!",
    "about": {
      "@type": "kyle&#x27;s ramblings (and other misc. stuff)",
      "description": "welcome to kyle&#x27;s blog!"
    }
  }
</script>
<link rel="alternate" type="application/atom+xml" href="/feed/">
<link rel="alternate" type="application/rss+xml" href="/feed/?type=rss">
<link rel="shortcut icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20100%20100'%3E%3Ctext%20y='.9em'%20font-size='90'%3E🐼%3C/text%3E%3C/svg%3E">
<style>
      
      
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap');

:root {
    --width: 720px;
    --font-main: 'Fira Code', monospace;
    --font-secondary: 'Fira Code', monospace;
    --font-scale: 1em;
    --background-color: #222129;
    --heading-color: #FFA86A;
    --text-color: #FFA86A;
    --link-color: #FFA86A;
    --visited-color: #bc8d6b;
    --code-background-color: #bc8d6b;
    --code-color: #222129;
    --blockquote-color: #222;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--font-scale);
    margin: auto;
    padding: 20px;
    max-width: var(--width);
    text-align: left;
    background-color: var(--background-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main);
    color: var(--heading-color);
}

a {
    color: var(--link-color);
    cursor: pointer;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

main {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 30px;
    border: 1px solid var(--link-color);
}

nav a {
    margin-right: 8px;
}

strong,
b {
    color: var(--heading-color);
}

button {
    margin: 0;
    cursor: pointer;
}

main {
    line-height: 1.6;
}

table {
    width: 100%;
}

hr {
    border: 0;
    border-top: 1px dashed;
}

img {
    max-width: 100%;
}

code {
    font-family: monospace;
    padding: 2px;
    background-color: var(--code-background-color);
    color: var(--code-color);
    border-radius: 3px;
}

blockquote {
    border-top: 1px solid var(--heading-color);
    border-bottom: 1px solid var(--heading-color);
    color: var(--text-color);
    padding: 20px;
    font-style: italic;
    margin-left: 0px;
    margin-right: 0px;
}

footer {
    padding: 25px 0;
    text-align: center;
    opacity: 0.6;
}

.title:hover {
    text-decoration: none;
}

.title h1 {
    font-size: 1em;
    padding: 5px 10px;
    background: var(--heading-color);
    color: var(--background-color);
    display: inline-block;
    font-weight: 400;
}

.inline {
    width: auto !important;
}

.highlight,
.code {
    padding: 1px 15px;
    background-color: var(--code-background-color);
    color: var(--code-color);
    border-radius: 3px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    overflow-x: auto;
}


.highlight {
    border-left: 5px solid var(--heading-color);
}

/* blog post list */
ul.blog-posts {
    list-style-type: none;
    padding: unset;
}

ul.blog-posts li {
    display: flex;
    margin-bottom: 20px;
}



ul.blog-posts li time {
    font-style: normal;
}

ul.blog-posts li span {
    flex: 0 0 130px;
}

ul.blog-posts li a:visited {
    color: var(--visited-color);
}

table {
    border-collapse: collapse;
}

table,
th,
td {
    border: 1px dashed var(--heading-color);
    padding: 10px;
}

@media only screen and (max-width:767px) {
    main {
        padding: 20px;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    ul.blog-posts li {
        flex-direction: column;
    }

    ul.blog-posts li span {
        flex: unset;
    }
}
      
  </style>
</head>
<body class="home" onload="(function() { document.cookie = `timezone=${Intl.DateTimeFormat().resolvedOptions().timeZone};path=/`; })()">
<header>
<a class="title" href="/">
<h1>
kyle's ramblings (and other misc. stuff)
</h1>
</a>
<nav>
<p><a href="/">Home</a> <a href="/blog/">Blog</a> <a href="/contact">Contact</a> <a href="/about/">"Whooo are you? Who, who? Who, who?"</a></p>
</nav>
</header>
<main>
<h2 id="centerwelcomecenter"><center>Welcome!</center></h2><p>Hello, internet passerby, or whatever title you prefer! This is my attempt at making a wee<sup class="footnote-ref" id="fnref-1"><a href="#fn-1">1</a></sup> blog.<br>
This is my first frontier into blogging in general. I've always wanted to get into it ever since I was a wean<sup class="footnote-ref" id="fnref-2"><a href="#fn-2">2</a></sup>, but I got caught up with other things, such as being a teenager and having to go through <em>all of that! [<a href="https://dodo.ac/np/images/0/0f/Fearful_NL_Icon.png" target="_blank">shudders</a>]</em></p>
<p>Sometimes you might even learn a bit of Scottish lingo<sup class="footnote-ref" id="fnref-3"><a href="#fn-3">3</a></sup> along the way, since we occasionally use different sayings from traditional English, at least from the small town where I'm from. I think it's important to keep sayings and things like that alive and in use!</p>
<p>Here's a bonus picture of one of my most prized possessions; <a href="https://i.ibb.co/kKHcqCx/kk.jpg" target="_blank">a <em>K.K. Slider</em> plush from <em>Animal Crossing!</em></a> I might start populating my blog with images of him, we'll see...!</p>
<p><em>Unrelated to all of the above, but thank you, <a href="https://herman.bearblog.dev/" target="_blank">Herman</a>, for providing a super simple way to blog about anything &lt;3</em></p>
<hr>
<section class="footnotes">
<ol>
<li id="fn-1"><p><em>Wee; small in size or extent. (Scottish, informal)</em><a href="#fnref-1" class="footnote">↩</a></p></li>
<li id="fn-2"><p><em>Wean; a child; infant. (Scottish, informal)</em><a href="#fnref-2" class="footnote">↩</a></p></li>
<li id="fn-3"><p><em>Lingo; language or speech, especially if strange or foreign. (Informal)</em><a href="#fnref-3" class="footnote">↩</a></p></li>
</ol>
</section>
</main>
<footer style="padding:25px 0;">
<span>
Powered by <a href="https://bearblog.dev">Bear ʕ•ᴥ•ʔ</a>
</span>
</footer>

</body></html>