Rewild Your Web
web browser dweb
at main 36 lines 1.4 kB view raw
1<!DOCTYPE html> 2<html> 3 <!-- SPDX-License-Identifier: AGPL-3.0-or-later --> 4 <head> 5 <title>Rewild Your Web</title> 6 <link rel="stylesheet" href="//theme.localhost:8888/index.css" /> 7 <link rel="stylesheet" href="//shared.localhost:8888/fonts/fonts.css" /> 8 <link rel="stylesheet" href="//shared.localhost:8888/third_party/lucide/lucide.css" /> 9 <link rel="stylesheet" href="new_view.css" /> 10 <link rel="icon" href="//system.localhost:8888/logo.png" /> 11 <script src="third_party/fend/fend_wasm.js"></script> 12 <script type="module" src="//shared.localhost:8888/lucide_icon.js"></script> 13 <script type="module" src="//shared.localhost:8888/theme.js"></script> 14 <script type="module" src="new_view.js"></script> 15 </head> 16 <body> 17 <div class="container" id="container"> 18 <div class="search-block"> 19 <h1>Rewild Your Web</h1> 20 <div class="search-header"> 21 <img src="logo.png" alt="Browser.HTML" class="logo" /> 22 <input 23 type="text" 24 class="search-input" 25 id="search-input" 26 placeholder="Search or enter URL…" 27 autofocus 28 /> 29 </div> 30 <div class="results-container" id="results-container"> 31 <ul class="results-list" id="results-list"></ul> 32 </div> 33 </div> 34 </div> 35 </body> 36</html>