diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2021-12-21 19:28:57 +0000 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2021-12-21 19:28:57 +0000 |
commit | 966fa360835a2de68190e6781dafbb8f66b09dac (patch) | |
tree | e08088355a1935cbe22a9e810e2485351f3bd9c2 | |
parent | 7f0305536ef535f9205ebbcce34f0266ab25c91d (diff) | |
download | home-966fa360835a2de68190e6781dafbb8f66b09dac.tar.gz home-966fa360835a2de68190e6781dafbb8f66b09dac.tar.bz2 home-966fa360835a2de68190e6781dafbb8f66b09dac.zip |
Make text bigger and centered
-rw-r--r-- | index.html | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -9,7 +9,7 @@ body { margin: 40px auto; max-width: 650px; line-height: 1.6; - font-size: 23px; + font-size: 30px; color: #444; padding: 0 10px; } @@ -20,14 +20,18 @@ a:link { color: blue; } a:visited { color: blue; } a:hover { color: blue; } a:active { color: blue; } +.center { + text-align: center +} </style> </head> <body> -<p>Hello, I'm Dmitry Ilvokhin.</p> +<p class="center">Hello, I'm Dmitry Ilvokhin.</p> -<p>You can reach me on <a href="https://t.me/ilvokhin">telegram</a> or - <a href="mailto:d@ilvokhin.com">email</a>.</p> +<p class="center"> + You can reach me on <a href="https://t.me/ilvokhin">telegram</a> or + <a href="mailto:d@ilvokhin.com">email</a>.</p> </body> </html> |