The library presents two PNG icons which can be used to embed a hyperlink to the AutoConnect menu.
To reference the icon, use the AUTOCONNECT_LINK macro in the Sketch. It expands into the string literal as an HTML <a></a>
tag with PNG embedded of the AutoConnect menu hyperlinks. Icon type is specified by the parameter of the macro.
!!! note "Usage"
```cpp
String html = "<html>";
html += AUTOCONNECT_LINK(BAR_32);
html += "</html>";
server.send(200, "text/html", html);
```