Browse Source

first commit

master
Fabien Normand 2 years ago
parent
commit
adbe19f3db
7 changed files with 75 additions and 0 deletions
  1. +8
    -0
      .idea/.gitignore
  2. +8
    -0
      .idea/modules.xml
  3. +8
    -0
      .idea/portes-ouvertes-hop.iml
  4. +22
    -0
      index.html
  5. BIN
      laclic.png
  6. BIN
      logo-hop.png
  7. +29
    -0
      style.css

+ 8
- 0
.idea/.gitignore View File

@@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

+ 8
- 0
.idea/modules.xml View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/portes-ouvertes-hop.iml" filepath="$PROJECT_DIR$/.idea/portes-ouvertes-hop.iml" />
</modules>
</component>
</project>

+ 8
- 0
.idea/portes-ouvertes-hop.iml View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

+ 22
- 0
index.html View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Portes Ouvertes Hôp Hôp Hôp - 25 septembre 2021</title>
<link rel="stylesheet" href="style.css">
</head>

<body>

<h1 class="title">Bienvenue aux portes ouvertes de </h1>

<img id="logo-hop" src="logo-hop.png" alt="Logo hop hop hop"/>

<h2 class="title">Vous êtes chez :</h2>

<img id="logo-laclic" src="laclic.png" alt="Logo hop hop hop"/>

</body>

</html>

BIN
laclic.png View File

Before After
Width: 523  |  Height: 106  |  Size: 9.8KB

BIN
logo-hop.png View File

Before After
Width: 322  |  Height: 156  |  Size: 5.0KB

+ 29
- 0
style.css View File

@@ -0,0 +1,29 @@
body{
text-align: center;
font-family: "DejaVu Sans", SansSerif;
}

.title{
color: #456;
}

h1{
margin-top: 100px;
margin-bottom: 50px;
}

h2{
margin-top: 100px;
margin-bottom: 50px;
}


#logo-laclic:hover{
cursor: crosshair;
opacity: 0.5;
}

#logo-hop:hover{
cursor: crosshair;
opacity: 0.5;
}

Loading…
Cancel
Save