42 lines
		
	
	
		
			856 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			856 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<header>
 | 
						|
  <style>
 | 
						|
    @import url("https://cdn.jsdelivr.net/gh/aaaakshat/cm-web-fonts@latest/fonts.css");
 | 
						|
    * {
 | 
						|
      font-family: "Computer Modern Serif", serif;
 | 
						|
    }
 | 
						|
 | 
						|
    body {
 | 
						|
      margin: 5%;
 | 
						|
      font-size: 15px;
 | 
						|
    }
 | 
						|
    .subscribe-button {
 | 
						|
      /* background: #0055d4; */
 | 
						|
      background: #444;
 | 
						|
      padding: 15px 30px;
 | 
						|
      border-radius: 3px;
 | 
						|
      border: 0;
 | 
						|
      cursor: pointer;
 | 
						|
      text-decoration: none;
 | 
						|
      color: #ffff;
 | 
						|
      display: inline-block;
 | 
						|
      min-width: 150px;
 | 
						|
      font-size: 15px;
 | 
						|
      text-align: center;
 | 
						|
    }
 | 
						|
 | 
						|
    .subscribe-input {
 | 
						|
      padding: 10px 15px;
 | 
						|
      border: 1px solid #888;
 | 
						|
      border-radius: 3px;
 | 
						|
      width: 40%;
 | 
						|
      box-shadow: 2px 2px 0 #f3f3f3;
 | 
						|
      border: 1px solid #ddd;
 | 
						|
      font-size: 15px;
 | 
						|
    }
 | 
						|
 | 
						|
    input:focus {
 | 
						|
      border-color: #0055d4;
 | 
						|
    }
 | 
						|
  </style>
 | 
						|
</header>
 |