Skip to content

Commit b512f71

Browse files
committed
added solutions for html and css
1 parent e5ae3f2 commit b512f71

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.myTitle {
2+
/*your code here*/
3+
font-family: 'Roboto'; /*Varies depending on the font you chose*/
4+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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>

0 commit comments

Comments
 (0)