How to get more information from the documentation?

       Text("Hello")
            .font(.headline)
            .fontWeight(.semibold)
            .foregroundColor(.primary)
            .onTapGesture {
                // Some code
            }

In this example, there is text and some modifiers. I'd like to know what other modifiers I can use with that specific view. and also what other options I have for each modifier like what other types of fonts there are. How can I get that information using Apple's documentation?

How to get more information from the documentation?
 
 
Q