-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
162 lines (157 loc) · 3.88 KB
/
Copy pathIndex.html
File metadata and controls
162 lines (157 loc) · 3.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Winner Mi-Sung Portfolio</title>
<style>
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background-color: #111;
color: #f5f5f5;
}
header {
background: linear-gradient(90deg, #000, #222);
text-align: center;
padding: 60px 20px;
}
header h1 {
color: #4da6ff; /* Bleu moderne */
font-size: 3em;
margin: 0;
}
header p {
font-size: 1.2em;
color: #ddd;
}
nav a {
margin: 0 10px;
color: #4da6ff;
text-decoration: none;
font-weight: bold;
}
section {
padding: 60px 20px;
text-align: center;
}
section h2 {
color: #4da6ff;
margin-bottom: 20px;
}
.projects, .pricing {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.card, .plan {
background: #222;
border: 1px solid #4da6ff;
border-radius: 10px;
padding: 20px;
width: 250px;
transition: transform 0.3s;
}
.card:hover, .plan:hover {
transform: scale(1.05);
}
.plan h3 {
color: #4da6ff;
}
.price {
font-size: 1.3em;
color: #f5f5f5;
margin-top: 10px;
}
.socials a {
margin: 0 15px;
font-size: 1.2em;
color: #4da6ff;
text-decoration: none;
}
footer {
background: #000;
text-align: center;
padding: 20px;
font-size: 0.9em;
color: #aaa;
}
.email {
margin-top: 20px;
font-size: 1.1em;
color: #f5f5f5;
}
.email a {
color: #4da6ff;
text-decoration: none;
font-weight: bold;
}
</style>
</head>
<body>
<header>
<h1>Winner Mi-Sung</h1>
<p>Créativité & Technologie au service de l’avenir</p>
<nav>
<a href="#couture">Couture</a>
<a href="#tech">Tech</a>
<a href="#tarifs">Tarifs</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="couture">
<h2>Couture & Création</h2>
<p>Chaque pièce est une histoire, chaque couture une vision.</p>
<div class="projects">
<div class="card">✨ Robes élégantes</div>
<div class="card">🧵 Créations uniques</div>
<div class="card">🎨 Design personnalisé</div>
</div>
</section>
<section id="tech">
<h2>Tech & Développement</h2>
<p>Python, AI, SaaS — transformer la créativité en technologie utile.</p>
<div class="projects">
<div class="card">💻 Projets Python</div>
<div class="card">🤖 Plateforme AI</div>
<div class="card">📱 Apps mobiles</div>
</div>
</section>
<section id="tarifs">
<h2>Mes Tarifs</h2>
<p>Des offres adaptées à vos besoins, en couture et en technologie.</p>
<div class="pricing">
<div class="plan">
<h3>✨ Couture</h3>
<p>Création de robe sur mesure</p>
<p class="price">À partir de 50$</p>
</div>
<div class="plan">
<h3>💻 Développement</h3>
<p>Site vitrine ou portfolio</p>
<p class="price">À partir de 100$</p>
</div>
<div class="plan">
<h3>🤖 Plateforme AI</h3>
<p>Prototype ou conseil</p>
<p class="price">Sur devis</p>
</div>
</div>
</section>
<section id="contact">
<h2>Réseaux sociaux & Contact</h2>
<div class="socials">
<a href="https://www.linkedin.com/in/winner-mi-sung-a85322389">LinkedIn</a>
<a href="https://www.instagram.com/winnersung">Instagram</a>
<a href="https://www.facebook.com/winner1234Mwandu">Facebook</a>
</div>
<div class="email">
📧 Email : <a href="mailto:winnersung3@gmail.com">winnersung3@gmail.com</a>
</div>
<p>Contactez-moi pour collaborations et projets.</p>
</section>
<footer>
© 2026 Winner Mi-Sung — Portfolio Signature
</footer>
</body>
</html>