Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gnoulh committed Jan 30, 2024
1 parent 8d41686 commit 8074697
Show file tree
Hide file tree
Showing 51 changed files with 18,867 additions and 0 deletions.
35 changes: 35 additions & 0 deletions kgvh/a.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="b.css">
<title>Không gian văn hóa Hồ Chí Minh</title>
</head>
<body>
<header>
<h1>Không gian văn hóa Hồ Chí Minh</h1>
<nav>
<ul>
<li><a href="index.html">Trang chủ</a></li>
<li><a href="life-career.html">Cuộc đời - sự nghiệp</a></li>
<li><a href="ideals-ethics-style.html">Tư tưởng - đạo đức - phong cách</a></li>
<li><a href="artworks.html">Tác phẩm</a></li>
<li><a href="ho-with-youth.html">Bác Hồ với thanh niên</a></li>
<li><a href="youth-follows-uncle.html">Thanh niên tiên tiến làm theo lời Bác</a></li>
<li><a href="good-deeds.html">Chuyện tốt việc đẹp</a></li>
</ul>
</nav>
</header>
<main>
<!-- Nội dung trang chủ -->
<section>
<h2>Chào mừng đến với Không gian văn hóa Hồ Chí Minh</h2>
<p>...</p>
</section>
</main>
<footer>
<p>&copy; 2024 Không gian văn hóa Hồ Chí Minh</p>
</footer>
</body>
</html>
Binary file added kgvh/assets/.DS_Store
Binary file not shown.
Binary file added kgvh/assets/favicon/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/favicon/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/favicon/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions kgvh/assets/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"./android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"./android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
Binary file added kgvh/assets/img/bac.jfif
Binary file not shown.
Binary file added kgvh/assets/img/brand/amazon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/img/brand/discord.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/img/brand/netflix.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/img/brand/reddit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/img/brand/spotify.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
190 changes: 190 additions & 0 deletions kgvh/assets/img/illustrations/features.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
122 changes: 122 additions & 0 deletions kgvh/assets/img/illustrations/header.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
425 changes: 425 additions & 0 deletions kgvh/assets/img/illustrations/network.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
120 changes: 120 additions & 0 deletions kgvh/assets/img/illustrations/pricing.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions kgvh/assets/img/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/img/testimonials/customer-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/img/testimonials/customer-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added kgvh/assets/img/testimonials/customer-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions kgvh/b.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #fff; /* Màu nền trắng */
}

header {
background-color: #e91e63; /* Màu hồng */
color: white;
text-align: center;
padding: 1em 0;
}

nav a {
text-decoration: none;
color: #e91e63; /* Màu hồng cho các liên kết */
}

main {
padding: 20px;
}

footer {
background-color: #e91e63; /* Màu hồng cho phần footer */
color: white;
text-align: center;
padding: 1em 0;
position: fixed;
bottom: 0;
width: 100%;
}
Loading

0 comments on commit 8074697

Please sign in to comment.