Мой внутренний css не будет работать с маленьким кодом, который у меня есть.Это кажется действительно глупым вопросом, но ничто, что я делаю, не помогает.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<title>Ask Help</title>
<style type = "text/css">
@font-face {
font-family: "junction";
src: url("Junction_02.otf");
}
html {
background-image: linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219) 54%);
background-image: -o-linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219) 54%);
background-image: -webkit-linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219) 54%);
background-image: -ms-linear-gradient(bottom, rgb(75,135,163) 2%, rgb(127,219,219) 54%);
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.02, rgb(75,135,163)), color-stop(0.54, rgb(127,219,219))
}
.menu {
list-style-type: none;
font-size: 25px;
}
h1 {
font-family: junction;
text-size: 60px;
}
</style>
</head>
<body>
<nav>
<ul class="menu">
<li><a href="index.html" title="Home">Home</a></li>
<li><a href="about.html" title="About Us">About</a></li>
<li><a href="past.html" title="iPod">Past Q&A's</a></li>
</ul>
</nav>
</body>
</html>