- 扫描 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>