- ID de l'analyse :
- 55dafdfd-1584-4cfa-83f9-92898de041cbTerminée
- URL soumise :
- https://p3d.pl/
- Fin du rapport :
Liens : 0 trouvé(s)
Liens sortants identifiés à partir de la page
Variables JavaScript : 5 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
0 | object |
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
loadContent | function |
Messages de journal de console : 2 trouvé(s)
Messages consignés dans la console web
Type | Catégorie | Enregistrement |
---|---|---|
error | network |
|
error | network |
|
HTML
Le corps HTML de la page en données brutes
<!DOCTYPE html><html lang="pl"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html">
<title>Piotr Cieciora Portfolio 2024</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: Arial, sans-serif;
overflow: hidden;
}
.navbar {
position: fixed;
top: 0;
width: 100%;
background-color: #333;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
box-sizing: border-box;
z-index: 1000;
}
.navbar a {
font-size: calc(12px + 4 * ((100vw - 120px) / 1000));
color: white;
padding: 5px 10px;
text-decoration: none;
text-transform: uppercase;
display: inline-block;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.navbar-title {
font-size: calc(15px + 4 * ((100vw - 190px) / 1000));
font-weight: bold;
text-decoration: none;
text-transform: uppercase;
}
.main {
display: flex;
flex-direction: column;
padding-top: 45px; /* wysokość menu */
height: calc(100% - 45px);
}
.content {
flex: 1;
overflow: hidden;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
@media (min-width: 1400px) {
.navbar a {
font-size: 18px; /* Zmniejszenie czcionki dla bardzo szerokich ekranów */
}
.navbar-title {
font-size: 20px; /* Zmniejszenie czcionki dla bardzo szerokich ekranów */
}
}
</style>
</head>
<body>
<div class="navbar">
<!-- <div class="navbar-title">Piotr Cieciora Portfolio 2024</div> -->
<a href="#" onclick="loadContent('home.html')">Piotr Cieciora Portfolio 2024</a>
<div>
<a href="#" onclick="loadContent('qloc.html')">QLOC</a>
<a href="#" onclick="loadContent('fwh.html')">FWH</a>
<a href="#" onclick="loadContent('ci.html')">CI</a>
<a href="#" onclick="loadContent('prom.html')">Prominence</a>
<a href="#" onclick="loadContent('freelance.html')">Freelance</a>
</div>
</div>
<div class="main">
<div class="content" id="content">
<iframe src="home.html" id="contentFrame"></iframe>
</div>
</div>
<script>
function loadContent(url) {
document.getElementById('contentFrame').src = url;
}
</script>
</body></html>