diff --git a/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html b/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
index 3f2ae9fc925a09d681944f427a639c8b40814aa1..13d75a6a2ad15fbc3d5d08201644cf99bfaa78f9 100644
--- a/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
+++ b/src/app/form/form-view/structure-form/structure-hours/structure-hours.component.html
@@ -26,7 +26,7 @@
   <div class="textareaBlock" fxLayout="column">
     <textarea
       rows="8"
-      placeholder="Exemple : nous ne sommes ouvert que le 1er mercredi du mois."
+      placeholder="Exemple : nous ne sommes ouverts que le 1er mercredi du mois."
       maxlength="500"
       formControlName="exceptionalClosures"
     ></textarea>
diff --git a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
index 9ab721daf99b0dcb139cf6d8d7eacd382a1acf61..0109087fd012fb8fb57c5cbdac84a2f21d3980b7 100644
--- a/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
+++ b/src/app/form/form-view/structure-form/structure-web-and-social-network/structure-web-and-social-network.component.html
@@ -8,7 +8,7 @@
       [icon]="'arrowBack'"
     ></app-svg-icon>
     <div class="titleContent">
-      <h3>Comment vous trouver la structure sur internet&nbsp;?</h3>
+      <h3>Votre présence sur internet et les réseaux sociaux</h3>
       <p>Facultatif</p>
     </div>
   </div>
@@ -94,8 +94,8 @@
             <app-svg-icon
               *ngIf="
                 structureForm.get('facebook').valid &&
-                structureForm.get('facebook').value != null &&
-                structureForm.get('facebook').value != ''
+                structureForm.get('facebook').value !== null &&
+                structureForm.get('facebook').value !== ''
               "
               [iconClass]="'icon-26'"
               [type]="'form'"
@@ -126,8 +126,8 @@
             <app-svg-icon
               *ngIf="
                 structureForm.get('twitter').valid &&
-                structureForm.get('twitter').value != null &&
-                structureForm.get('twitter').value != ''
+                structureForm.get('twitter').value !== null &&
+                structureForm.get('twitter').value !== ''
               "
               [iconClass]="'icon-26'"
               [type]="'form'"
@@ -159,8 +159,8 @@
             <app-svg-icon
               *ngIf="
                 structureForm.get('instagram').valid &&
-                structureForm.get('instagram').value != null &&
-                structureForm.get('instagram').value != ''
+                structureForm.get('instagram').value !== null &&
+                structureForm.get('instagram').value !== ''
               "
               [iconClass]="'icon-26'"
               [type]="'form'"
@@ -191,8 +191,8 @@
             <app-svg-icon
               *ngIf="
                 structureForm.get('linkedin').valid &&
-                structureForm.get('linkedin').value != null &&
-                structureForm.get('linkedin').value != ''
+                structureForm.get('linkedin').value !== null &&
+                structureForm.get('linkedin').value !== ''
               "
               [iconClass]="'icon-26'"
               [type]="'form'"