{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<title>LearnEnglish</title>
<link rel="stylesheet" href="{% static 'main/css/main.css' %}">
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>
----------------<code lang="html">
{% extends 'main/example.html' %}
{% load static %}
{% block content %}
<h1>Главная Страница</h1>
<a id= 'buttonMain' class = 'menu' href="/"><button>Главная </button></a><br>
<a class = 'menu' href="NewWords"><button>Новые Слова </button></a><br>
<a class = 'menu' href="RepeatWords"><button>Повторение Слов </button></a>
{% endblock %}
-----------------<code lang="css">
body{
background: #191917;
}
h1 {
color: white;
margin-left: 10px;
font-size: 27px;
font-family: "Arial Rounded MT Bold";
}
.menu{
font-family: "Arial Rounded MT Bold";
font-style: inherit;
margin-left: -60px;
margin-bottom: -5px;
border: 35px solid white;
width: 300px;
border-radius: 40px;
font-size: 25px;
outline: 2px solid black;
text-align: right;
}
.menu:hover{
color: #0176ff;
font-weight: 550;
}
</code>
</code>
вообщем сделал 4 кнопки, все работало пока в css я к ним обращался как к button, но когда решил обратиться как к class, а именно .menu, то сразу все перестало работать. Я еще нифига не знаю, так что помогите кому не сложно