let
Source = Web.BrowserContents("https://www.chabad.org/calendar/candlelighting_cdo/locationId/10023/locationType/2/jewish/Candle-Lighting.htm"),
#"Extracted Table From Html" = Html.Table(Source, {{"Column1", ".secular_date"}, {"Column2", ".jewish_date"}, {"Column3", ".align_right .bold"}, {"Column4", ".time"}}, [RowSelector=".day"]),
#"Filtered Rows" = Table.SelectRows(#"Extracted Table From Html", each ([Column3] = "Light Candles at"))
in
#"Filtered Rows"