https://p3d.pl/portfolio/

ID da verificação
55dafdfd-1584-4cfa-83f9-92898de041cbConcluído
URL enviado:
https://p3d.pl/
Relatório concluído:

Ligações · 0 encontradas

Variáveis JavaScript · 5 encontradas

NomeTipo
0object
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
loadContentfunction

Mensagens de registo da consola · 2 encontradas

TipoCategoriaRegisto
errornetwork
URL
https://p3d.pl/portfolio/css/bg2.png
Texto
Failed to load resource: the server responded with a status of 404 ()
errornetwork
URL
https://p3d.pl/favicon.ico
Texto
Failed to load resource: the server responded with a status of 404 ()

HTML

<!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>