Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
saeEC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MahamanBachirDodo Hadidjata
saeEC
Commits
ca9acfa3
Commit
ca9acfa3
authored
8 months ago
by
BOUBRIMA Rawane
Browse files
Options
Downloads
Patches
Plain Diff
prmier commit
parents
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
acceuil.html
+98
-0
98 additions, 0 deletions
acceuil.html
dockerfile
+8
-0
8 additions, 0 deletions
dockerfile
with
106 additions
and
0 deletions
acceuil.html
0 → 100644
+
98
−
0
View file @
ca9acfa3
<!DOCTYPE html>
<html
lang=
"fr"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Accueil
</title>
<style>
body
{
font-family
:
Arial
,
sans-serif
;
margin
:
0
;
padding
:
0
;
background-color
:
#f4f4f4
;
}
header
{
background-color
:
#333
;
color
:
#fff
;
padding
:
1rem
;
text-align
:
center
;
}
nav
ul
{
list-style
:
none
;
padding
:
0
;
}
nav
ul
li
{
display
:
inline
;
margin-right
:
15px
;
}
nav
ul
li
a
{
color
:
#fff
;
text-decoration
:
none
;
}
.container
{
padding
:
20px
;
max-width
:
1000px
;
margin
:
0
auto
;
}
h1
,
h2
{
color
:
#333
;
}
.section
{
margin-bottom
:
20px
;
padding
:
20px
;
background-color
:
#fff
;
border-radius
:
5px
;
box-shadow
:
0
0
10px
rgba
(
0
,
0
,
0
,
0.1
);
}
footer
{
background-color
:
#333
;
color
:
#fff
;
text-align
:
center
;
padding
:
1rem
;
position
:
fixed
;
width
:
100%
;
bottom
:
0
;
}
</style>
</head>
<body>
<header>
<h1>
Bienvenue sur notre site
</h1>
<nav>
<ul>
<li><a
href=
"#services"
>
Services
</a></li>
<li><a
href=
"#team"
>
Équipe
</a></li>
<li><a
href=
"#contact"
>
Contact
</a></li>
</ul>
</nav>
</header>
<div
class=
"container"
>
<section
class=
"section"
id=
"welcome"
>
<h2>
Bienvenue
</h2>
<p>
Nous sommes ravis de vous accueillir sur notre site. Découvrez nos services et notre équipe.
</p>
</section>
<section
class=
"section"
id=
"services"
>
<h2>
Nos Services
</h2>
<p>
Nous offrons une large gamme de services adaptés à vos besoins en informatique, administration système, réseau et sécurité.
</p>
</section>
<section
class=
"section"
id=
"team"
>
<h2>
Notre Équipe
</h2>
<p>
Notre équipe est composée de professionnels expérimentés, prêts à vous accompagner dans vos projets.
</p>
</section>
<section
class=
"section"
id=
"contact"
>
<h2>
Contactez-nous
</h2>
<p>
Pour toute question, veuillez nous envoyer un message à
<a
href=
"mailto:contact@notresite.com"
>
contact@notresite.com
</a>
.
</p>
</section>
</div>
<footer>
<p>
©
2024 Notre Site - Tous droits réservés
</p>
</footer>
</body>
</html>
This diff is collapsed.
Click to expand it.
dockerfile
0 → 100644
+
8
−
0
View file @
ca9acfa3
# Utilise l'image Nginx comme image de base
FROM
nginx:alpine
# Copie le fichier accueil.html (et autres) dans le dossier de contenu web de Nginx
COPY
. /usr/share/nginx/html
# Expose le port 80 pour que Nginx soit accessible depuis l'extérieur
EXPOSE
80
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment