Displaying text( quotes message ) in a part of the page base on the date provided

Hi, I want to know if it’s possible to show a text message on a part of a page(on the upper part) in which the text will be displaying based on the date I will set it to show .?

What you’re probably looking for is a mixture of the content manager and elements on the page.

Use the content manager to store all of the info, using the text field for Quotes and the Date field for the date.

Then using wixDataQuery (https://www.wix.com/velo/reference/wix-data/wixdataquery/eq) check to see if any of the entries in the database equal the current day, and then use that to display the quote in the text field

This is possible if you enter all the information into a database like Noah said. Once you do that you can query the database with the current date and then the item that matches the current date would display. See the code below for reference.

let today = new Date();
wixData.query("DBNAME")
.eq("dateField", today)
.find()
.then((results)=> {
let quote = results.items[0].quotes
$w("text").text = quote
})