I consider the template node crucial to further my development efforts.
Using google font examples https://developers.google.com/fonts/docs/getting_started
<!--- https://developers.google.com/fonts/docs/getting_started --->
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Tangerine">
<style>
body {
font-family: 'Tangerine', serif;
font-size: 48px;
}
</style>
</head>
<body>
<div>Making the Web too Beautiful!</div>
</body>
</html>
I added it to my test page. The dashboard dropdown for that page changed.
So, this is a 2 part question. 1. What went wrong? and 2. What is the best development platform to use for a newbie?.
Can you point me to my error(s)?
Thanks