- 제출된 URL:
- https://ephraimdawson.me/
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 6개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
0 | object |
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Iconify | object |
SimpleSVG | object |
콘솔 로그 메시지 · 1개 결과
웹 콘솔에 기록된 메시지
유형 | 카테고리 | 로그 |
---|---|---|
error | network |
|
HTML
페이지의 원시 HTML 본문
<!DOCTYPE html><html><head><style type="text/css">span.iconify, i.iconify, iconify-icon { display: inline-block; width: 1em; }</style>
<meta charset="utf-8">
<title>Home</title>
<link rel="stylesheet" href="/assets/css/styles.css">
<!-- responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<nav>
<div class="box_where_nav_items_go">
<p>
<a href="/" class="current"><span>home</span></a>
</p>
<p>
<a href="/posts.html"><span>posts</span></a>
</p>
<!-- <div class="nav_items_right">
<p>
<a>
<span>
updated
20:09 2024-07-01
</span>
</a>
</p>
</div> -->
</div>
</nav>
<div class="container">
<div class="content_wrap">
<h1 class="title">
Hi there!
</h1>
<p>I build random things on the internet.</p>
<p>I’m a student with experience in backend development. I work with technologies like .NET, Python, Docker, Kubernetes, and Microsoft Azure. (as you can probably tell from the site’s design, I’m not a frontend developer 😅)</p>
<p>Feel free to check out my <a href="/posts.html">blog</a> for more information.</p>
<p>GPG: 4963EDB497D68F2E</p>
<div class="columns">
<button class="button button-fill column" onclick="location.href='mailto:[email protected]'">
Contact
</button>
</div>
<!--
<div class="columns">
<div class="card card-nobg card-dashed column">
<h1>Card title</h1>
<p>Card content</p>
</div>
<div class="card card-nobg card-dashed column">
<h1>Card title</h1>
<p>Card content</p>
</div>
<div class="card card-nobg card-dashed column">
<h1>Card title</h1>
<p>Card content</p>
</div>
</div>
```py
# fib
def fib(n):
if n == 0:
return 0
elif n == 1:
return 1
else:
return fib(n-1) + fib(n-2)
```
<button class="button button-fill">
Click me
</button>
<button class="button button-border">
Click me
</button>
| Fruit | Price |
|---------|-------|
| Apple | $1.00 |
| Banana | $0.50 |
| Orange | $1.20 |
| ------- | ----- |
-->
</div>
<footer>
<hr>
<p>
© Ephraim Dawson 2024
</p>
<p>
site updated 20:09 2024-07-01
</p>
</footer>
</div>
<script src="//code.iconify.design/1/1.0.6/iconify.min.js"></script>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'8e556e73490e6671',t:'MTczMjA3NDE2MS4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script><iframe height="1" width="1" style="position: absolute; top: 0px; left: 0px; border: none; visibility: hidden;"></iframe>
</body></html>