Browse Source

Use no protocol to fetch Lato font

When using https://example.com, the welcome page design looks off due to fetching the Lato font on http://.

Ref: https://github.com/laravel/framework/issues/7159

Better yet, instead of https:// or http://, //
David Lemayian 9 years ago
parent
commit
8bf428c193
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/views/welcome.blade.php

+ 1 - 1
resources/views/welcome.blade.php

@@ -1,6 +1,6 @@
 <html>
 	<head>
-		<link href='http://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
+		<link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
 
 		<style>
 			body {