- 掃描 ID:
- fb19f54f-fc91-4228-a96a-d2ccc1f8d52a已完成
- 已提交的 URL:
- https://exposedpassion.net/about
- 報告完成時間:
連結 · 找到 0 個
從頁面中識別的傳出連結
JavaScript 變數 · 找到 3 個
在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取
名稱 | 類型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
主控台記錄訊息 · 找到 1 條
記錄到 Web 主控台的訊息
類型 | 類別 | 記錄 |
---|---|---|
error | network |
|
HTML
頁面的原始 HTML 主體
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - exposedpassion.net</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<strong>exposedpassion.net</strong>
</a>
<!-- Burger icon for mobile -->
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item" href="/">Home</a>
<a class="navbar-item" href="/about">About</a>
<a class="navbar-item" href="/category/reproductive-health">Reproductive Health</a>
<a class="navbar-item" href="/category/dermatology">Dermatology</a>
<a class="navbar-item" href="/category/orthopedics">Orthopedics</a>
<a class="navbar-item" href="/category/addiction-treatment">Addiction Treatment</a>
<a class="navbar-item" href="/category/preventive-care">Preventive Care</a>
<a class="navbar-item" href="/contact">Contact</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section with Background Image -->
<section class="hero is-large has-background">
<div class="hero-body">
<div class="container">
<h1 class="title has-text-white">
About Us
</h1>
<p class="subtitle has-text-white">
Learn more about exposedpassion.net.
</p>
</div>
</div>
</section>
<!-- Main Content Section -->
<section class="section">
<div class="container is-max-desktop">
<div class="content">
<h2>Our Story</h2>
<p>Welcome to exposedpassion.net, where we believe in celebrating and embracing all forms of creative expression. We are a passionate community dedicated to giving a platform to artists, creators, and storytellers to showcase their work and connect with a like-minded audience.
At exposedpassion.net, we understand the power of vulnerability and the beauty of sharing your true passion with the world. Whether you are a photographer, writer, painter, musician, or any other kind of artist, we welcome you to join our community and share your unique voice.
Our mission is to foster a supportive and inclusive environment where creativity knows no bounds. We believe in the transformative power of art and the connections it fosters among individuals from all walks of life. Through our platform, we aim to inspire, uplift, and empower both creators and enthusiasts alike.
Join us at exposedpassion.net to explore a world of creativity, inspiration, and connection. Let your passion shine through and be a part of a community that celebrates the beauty of artistic expression.</p>
</div>
</div>
</section>
<!-- Footer Section -->
<footer class="footer">
<div class="container">
<div class="content has-text-centered">
<p>
<a href="/">exposedpassion.net</a> © 2024
<a href="/privacy">Privacy Policy</a>
<a href="/terms">Terms and Conditions</a>
</p>
</div>
</div>
</footer>
<script>
// JavaScript to toggle the mobile menu
document.addEventListener('DOMContentLoaded', () => {
const burgerIcon = document.querySelector('.navbar-burger');
const navbarMenu = document.querySelector('.navbar-menu');
burgerIcon.addEventListener('click', () => {
navbarMenu.classList.toggle('is-active');
});
});
</script>
</body></html>