Example Using Adobe Fonts
<link rel="stylesheet" href="https://use.typekit.net/yourkitid.css">body {
font-family: 'Proxima Nova', sans-serif;
}<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adobe Fonts Example</title>
<!-- Embed the Adobe Font -->
<link rel="stylesheet" href="https://use.typekit.net/yourkitid.css">
<style>
body {
font-family: 'Proxima Nova', sans-serif;
}
h1 {
font-family: 'Proxima Nova', sans-serif;
font-weight: bold;
color: #222;
}
p {
font-family: 'Proxima Nova', sans-serif;
color: #555;
}
</style>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is an example of using Adobe Fonts on a webpage. We are using the Proxima Nova font in this example.</p>
</body>
</html>PreviousPopular External Fonts (Google Fonts and Others)NextGeneral Steps for Using Any External Font
Last updated