portfolio
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic links in README
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Unable to calculate vocabulary similarity
Last synced: 6 months ago
·
JSON representation
·
Repository
Basic Info
- Host: GitHub
- Owner: tina509
- Language: HTML
- Default Branch: main
- Size: 5.62 MB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Created 8 months ago
· Last pushed 7 months ago
Metadata Files
Citation
Owner
- Login: tina509
- Kind: user
- Repositories: 1
- Profile: https://github.com/tina509
Citation (citation.html)
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Citations Motivation Technologie</title>
<style>
/* === STYLE GLOBAL === */
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #2c003e;
color: white;
min-height: 100vh;
}
/* === HEADER & NAVIGATION === */
header {
background-color: #3d0066;
padding: 15px 20px;
box-shadow: 0 2px 5px rgba(0,0,0,0.5);
position: sticky;
top: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 30px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
font-size: 18px;
padding: 6px 12px;
border-radius: 5px;
transition: background-color 0.3s;
display: block;
}
nav ul li a:hover,
nav ul li a.active {
background-color: #b366ff;
color: #2c003e;
}
/* Hamburger button - hidden on desktop */
#menu-toggle {
display: none;
font-size: 28px;
background: none;
border: none;
color: white;
cursor: pointer;
}
/* === RESPONSIVE === */
@media (max-width: 768px) {
nav ul {
position: fixed;
top: 60px;
right: 0;
background-color: #3d0066;
width: 200px;
height: calc(100% - 60px);
flex-direction: column;
gap: 0;
padding-top: 20px;
transform: translateX(100%);
transition: transform 0.3s ease-in-out;
box-shadow: -2px 0 5px rgba(0,0,0,0.5);
}
nav ul.active {
transform: translateX(0);
}
nav ul li {
margin-bottom: 20px;
padding-left: 20px;
}
#menu-toggle {
display: block;
}
}
/* === SECTION CITATIONS === */
.citation-container {
max-width: 800px;
margin: 50px auto;
background-color: #3d0066;
color: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
text-align: center;
}
.citation {
font-size: 1.4rem;
margin: 20px 0;
background-color: #5a2393;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px #00000080;
display: flex;
justify-content: space-between;
align-items: center;
}
.citation span {
flex: 1;
text-align: left;
}
.supprimer-btn {
margin-left: 15px;
padding: 5px 10px;
background-color: #b366ff;
color: #2c003e;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 0.9rem;
font-weight: bold;
transition: background-color 0.3s;
}
.supprimer-btn:hover {
background-color: #9933ff;
}
h1 {
color: #d9b3ff;
}
.add-section {
margin-top: 30px;
}
.add-section input {
padding: 10px;
width: 70%;
border: none;
border-radius: 5px;
margin-right: 10px;
background-color: #5a2393;
color: white;
}
.add-section button {
padding: 10px 20px;
background-color: #b366ff;
border: none;
border-radius: 5px;
color: #2c003e;
cursor: pointer;
font-weight: bold;
}
</style>
</head>
<body>
<header>
<button id="menu-toggle" aria-label="Ouvrir le menu">☰</button>
<nav>
<ul id="main-nav">
<li><a href="index.html">Accueil</a></li>
<li><a href="projets.html">Projets</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="citation.html" class="active">Citations</a></li>
</ul>
</nav>
</header>
<section class="citation-container">
<h1>Citations Inspirantes - Technologie & Persévérance</h1>
<div class="citation">
<span>"Ce n'est pas parce que c'est difficile que nous n'osons pas, c'est parce que nous n'osons pas que c'est difficile." – Sénèque</span>
</div>
<div class="citation">
<span>"La technologie ne remplace jamais le travail acharné, elle le complète."</span>
</div>
<div class="citation">
<span>"Tout semble impossible jusqu'à ce que ce soit fait." – Nelson Mandela</span>
</div>
<div class="citation">
<span>"Si vous tombez sept fois, relevez-vous huit." – Proverbe japonais</span>
</div>
<div class="citation">
<span>"Les plus grands développeurs ont été des débutants un jour. Continuez d'apprendre."</span>
</div>
<div class="citation">
<span>"N'abandonnez jamais. Le code qui ne fonctionne pas aujourd'hui vous apprendra quelque chose demain."</span>
</div>
<!--
<div class="add-section">
<input type="text" id="newCitation" placeholder="Écris ta citation ici...">
<button onclick="ajouterCitation()">Ajouter</button>
</div>
-->
</section>
<footer>
<p>© 2025 - Mon Portfolio</p>
</footer>
<script>
const menuToggle = document.getElementById('menu-toggle');
const nav = document.getElementById('main-nav');
menuToggle.addEventListener('click', () => {
nav.classList.toggle('active');
});
nav.querySelectorAll('a').forEach(link => {
link.addEventListener('click', () => {
if (nav.classList.contains('active')) {
nav.classList.remove('active');
}
});
});
/*
// Si ou vle ajoute fonctionnalités pou ajoute/supprimer citations, ou ka dekomante sa a:
function supprimer(button) {
button.parentElement.remove();
}
function ajouterCitation() {
const input = document.getElementById('newCitation');
const text = input.value.trim();
if (text) {
const div = document.createElement('div');
div.className = 'citation';
const spanTexte = document.createElement('span');
spanTexte.textContent = text;
const btnSupprimer = document.createElement('button');
btnSupprimer.textContent = 'Supprimer';
btnSupprimer.className = 'supprimer-btn';
btnSupprimer.onclick = function () {
div.remove();
};
div.appendChild(spanTexte);
div.appendChild(btnSupprimer);
document.querySelector('.citation-container').insertBefore(div, document.querySelector('.add-section'));
input.value = '';
} else {
alert('Veuillez entrer une citation.');
}
}
*/
</script>
</body>
</html>
GitHub Events
Total
- Push event: 6
Last Year
- Push event: 6