48 lines
751 B
HTML
48 lines
751 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
<style>
|
|
|
|
.sources {
|
|
background-color: gray;
|
|
color: white;
|
|
text-align: left;
|
|
height: 200px;
|
|
width: 1660px;
|
|
margin-top: auto;
|
|
}
|
|
|
|
.sourcescontent{
|
|
margin-left: 8px;
|
|
color:white;
|
|
}
|
|
|
|
.mainpart {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 80vh;
|
|
}
|
|
</style>
|
|
<div class="mainpart">
|
|
<h1>Information on bivariate data Analysis</h1>
|
|
|
|
<div class="information">
|
|
<h2>information</h2>
|
|
|
|
</div>
|
|
|
|
<div class="formulas">
|
|
<h2>formulas</h2>
|
|
|
|
</div>
|
|
|
|
<div class="quizzes">
|
|
<h2>quizzes</h2>
|
|
</div>
|
|
|
|
</div>
|
|
<footer class="sources">
|
|
<div class="sourcescontent">
|
|
<h2>Sources</h2>
|
|
<div>
|
|
</footer>
|
|
{% endblock %} |