christopher commited on
Commit
aac23ef
1 Parent(s): 7e016e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,8 +13,8 @@ def search_chat_noir(key, search_query):
13
 
14
  def result_html(result):
15
  return (
16
- f"<p style=\"font-family:sans-serif; color:Blue; font-size: 42px;\">{result.title.html}</p><br>"
17
- f"<a href=\"{result.target_uri}\" style=\"font-family:sans-serif; color:Blue; font-size: 42px;\">{result.title.html}</a>:<br>"
18
  f"{result.snippet.html}"
19
  )
20
 
 
13
 
14
  def result_html(result):
15
  return (
16
+ f"<p style=\"color:Blue;\">{result.title.html}</p><br>"
17
+ f"<a href=\"{result.target_uri}\" style=\"color:Green;\">{result.target_uri}</a>:<br>"
18
  f"{result.snippet.html}"
19
  )
20