File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
exercises/10-Your-Own-Font Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ .myTitle {
2+ /*your code here*/
3+ font-family : 'Roboto' ; /*Varies depending on the font you chose*/
4+ }
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html >
3+
4+ < head >
5+ < meta charset ="utf-8 " />
6+ < meta name ="viewport " content ="width=device-width " />
7+ <!--your code here -->
8+ < link
9+ href ="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Source+Code+Pro:wght@300;400;500;600;700;800&display=swap "
10+ rel ="stylesheet "> <!--Varies depending on the font you chose-->
11+ < link rel ="stylesheet " type ="text/css " href ="./styles.css " />
12+
13+ < title > 10 Your Own Font</ title >
14+ </ head >
15+
16+ < body >
17+ < h1 class ="myTitle "> My unique font</ h1 >
18+ </ body >
19+
20+ </ html >
You can’t perform that action at this time.
0 commit comments