Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
mechtester authored Mar 16, 2024
1 parent 94644c7 commit a2aff9e
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,19 @@
.sample-link a:hover {
color: #45a049;
}

/* Custom styling for the note section */
.note-section {
margin-top: 30px;
padding: 10px;
background-color: #f9f9f9;
border-radius: 5px;
}

.note {
font-size: 14px;
color: #555;
}
</style>
</head>

Expand All @@ -110,9 +123,14 @@ <h1>Random Question Generator</h1>
<div class="sample-link">
<a href="https://github.com/mechtester/randomquestions/raw/main/Sample%20Template.xlsx">Download Sample Template</a>
</div>
<div class="sample-link">
<div class="sample-link">
<a href="https://github.com/mechtester/randomquestions">Github Repository</a>
</div>

<!-- Note section -->
<div class="note-section">
<p class="note">Note: If questions and answers do not appear clearly, please clear your browser's cookies and caches. Then start the application again.</p>
</div>
</div>

<script>
Expand All @@ -134,7 +152,6 @@ <h1>Random Question Generator</h1>
document.getElementById('fileNameSpan').textContent = fileName;
}
</script>

</body>

</html>

0 comments on commit a2aff9e

Please sign in to comment.