diff --git a/files/acme_web/anvil.ico b/files/acme_web/anvil.ico
deleted file mode 100644
index 822940089974d68157c60a3287476ae5dced9064..0000000000000000000000000000000000000000
Binary files a/files/acme_web/anvil.ico and /dev/null differ
diff --git a/files/index.html b/files/index.html
index f71f9ea9c1cf0531ce41dc6f6b9eab5a24481e95..57161b6cbb50a56cfd56aee67421cf3c890f9c8b 100644
--- a/files/index.html
+++ b/files/index.html
@@ -17,16 +17,24 @@
 
 <body>
   <div class="table-responsive">
-    <h1><p style="text-align:center">ACME Certificates List</p></h1>
+    <h1>
+      <p style="text-align:center">ACME Certificates List</p>
+    </h1>
     <hr>
     <div class="well">
       <form action="#">
         <table class="table" id="patching">
           <thead>
             <tr>
-              <th><p style="text-align:center"><a href="/letsencrypt/index.html">LetsEncrypt</a></p></th>
-              <th><p style="text-align:center"><a href="/sectigo_ev/index.html">SectiGO EV</a></p></th>
-              <th><p style="text-align:center"><a href="/sectigo_ov/index.html">SectiGO OV</a></p></th>
+              <th>
+                <p style="text-align:center"><a href="/letsencrypt/index.html">LetsEncrypt</a></p>
+              </th>
+              <th>
+                <p style="text-align:center"><a href="/sectigo_ev/index.html">SectiGO EV</a></p>
+              </th>
+              <th>
+                <p style="text-align:center"><a href="/sectigo_ov/index.html">SectiGO OV</a></p>
+              </th>
             </tr>
           </thead>
           <tbody>
@@ -37,9 +45,10 @@
       </form>
     </div>
   </div>
+  <p style="text-align:center"> <img src="anvil.png" alt="ACME" title="ACME"></p>
 </body>
 
 <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
 <script src="mountable.js"></script>
 
-</html>
+</html>
\ No newline at end of file
diff --git a/manifests/files.pp b/manifests/files.pp
index 7bc5cbfaaae886463aa46c352819f89de5642a89..a816b6234bae452e72cdd6a2b3480a4d64974ccb 100644
--- a/manifests/files.pp
+++ b/manifests/files.pp
@@ -109,6 +109,14 @@ class geant_acme::files (
       require => Class['nginx'],
       recurse => true,
       source  => "puppet:///modules/${module_name}/acme_web";
+    "${web_base}/anvil.ico":
+      mode    => '0644',
+      require => File[$web_base],
+      source  => 'puppet:///modules/depot/anvil.ico';
+    "${web_base}/anvil.png":
+      mode    => '0644',
+      require => File[$web_base],
+      source  => 'puppet:///modules/depot/anvil.png';
     "${web_base}/letsencrypt/index.html":
       mode    => '0644',
       require => File[$web_base],