Compare commits

...

3 Commits

Author SHA1 Message Date
Aadil Ayub 8c9168f330 add basic styling and fonts
continuous-integration/drone/push Build is passing Details
2021-10-15 19:57:16 +05:00
Aadil Ayub 276f2b455c add font assets 2021-10-15 19:54:01 +05:00
Aadil Ayub bb80714e9b tighten up markup 2021-10-15 19:49:25 +05:00
5 changed files with 33 additions and 1 deletions

Binary file not shown.

Binary file not shown.

19
fonts/fonts.css Normal file
View File

@ -0,0 +1,19 @@
@font-face {
font-family: 'Concourse OT';
font-style: normal;
font-weight: normal;
font-stretch: normal;
font-display: auto;
src: url('concourse_ot_3_book.woff2') format('woff2');
}
@font-face {
font-family: 'Concourse OT';
font-style: normal;
font-weight: bold;
font-stretch: normal;
font-display: auto;
src: url('concourse_ot_6_semibold.woff2') format('woff2');
}

View File

@ -5,6 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>32m</title>
<link rel="stylesheet" href="fonts/fonts.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
@ -13,7 +14,11 @@
<p>Our focus is on the Canadian telecommunications, media, and fintech sectors.</p>
<address>
<p>Box 563, Station P Toronto, ON M5S 2T1 Canada</p>
<p>E: hello@Ask32M.com P: +1 416 613-5056 T: @Ask32M</p>
<ul>
<li>E: hello@Ask32M.com</li>
<li>P: +1 416 613-5056</li>
<li>T: @Ask32M</li>
</ul>
</address>
</body>
</html>

8
style.css Normal file
View File

@ -0,0 +1,8 @@
:root {
--red: #A12626;
}
body {
font-family: 'Concourse OT';
color: var(--red);
}