diff options
author | Julian T <julian@jtle.dk> | 2021-06-09 23:04:14 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-06-09 23:04:14 +0200 |
commit | fb1339bc14a3dc953d97ede4fa2bbde5e3682ccb (patch) | |
tree | fd2fe6cf4a34fff6dc3d0c5c8de63d7fda260626 /index.html | |
parent | bac4437664f9d4fb19ab2a1efcc8f1a2c4387acf (diff) |
Add viewport meta tag
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 26 |
1 files changed, 3 insertions, 23 deletions
@@ -2,6 +2,7 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Julian site</title> <link rel="icon" href="/favicon.png"> @@ -12,33 +13,12 @@ body { padding: 0 .62em; font: 1.1em/1.2 serif; } -#header { - display: flex; - flex-direction: row; -} -#header-image { - display: flex; - margin-right: 1em; - align-items: center; -} -#logo { - object-fit: scale-down; - height: 3.5em; -} -#line-below-header { - margin-top: 0px; -} </style> </head> <body> <div id="header"> - <div id="header-image"> - <img id="logo" src="/favicon.png"> - </div> - <div> - <h2>Julian's personal website.</h2> - <p>This is just a small page containing some contact info etc.</p> - </div> + <h2>Julian's personal website.</h2> + <p>This is just a small page containing some contact info etc.</p> </div> <div id="projects"> <hr id="line-below-header"> |