MrMurphy1: Wer kennt diese Schriftart

Beitrag lesen

Hallo,

ich habe noch mal zwei zusätzliche Google-Fonts herausgesucht, die passen könnten.

<!DOCTYPE html>
<html lang="de">
<head>
   <meta charset="utf-8">
   <title>Schriftart suchen 01</title>
   <meta name="description" content="HTML5, CSS3">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <style>
      @import url(https://fonts.googleapis.com/css?family=Hind);
      @import url(https://fonts.googleapis.com/css?family=Merriweather+Sans);
      @import url(https://fonts.googleapis.com/css?family=Molengo);
   @media all {
      * {
         box-sizing: border-box;
      }
      html {
         font-size: 120%;
      }
      body {
         padding: 0;
      }
      h1 {
         font-size: 4rem;
         color: white;
         text-transform: uppercase;
         text-shadow: 4px 0 4px black;
      }
      h1:nth-child(2) {
         font-family: Hind;
      }
      h1:nth-child(3) {
         font-family: "Merriweather sans";
      }
      h1:nth-child(4) {
         font-family: Molengo;
      }
   }
   </style>
</head>
<body>
   <img src="http://www.montavit.ch/logo/montavit-klein.gif" alt="Schriftart">
   <h1>Montavit / Hind</h1>
   <h1>Montavit / Merriweather sans</h1>
   <h1>Montavit / Molengo</h1>
</body>
</html>

Gruss

MrMurphy