SVG图标示例 查找 框

root
abc abc
  • 5 Aug

<!DOCTYPE html>

<html lang="en"> <head> <meta charset="UTF-8"> <title>Simple To-Do List</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="container"> <input type="file" id="new-file" placeholder="请选择待上传的文件..."> <h1>To-Do List</h1> <input type="text" id="new-task" placeholder="Add new task..."> <button onclick="addTask()">Add Task</button> <ul id="tasks"></ul> </div> <svg t="1754231755267" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5059" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M948.032 902.784l-206.976-206.976C797.696 628.928 832 542.528 832 448c0-212.064-171.936-384-384-384S64 235.936 64 448s171.936 384 384 384c94.528 0 180.928-34.304 247.808-90.912l206.976 206.976c14.016 14.016 35.488 15.232 48 2.72C963.264 938.272 962.048 916.8 948.032 902.784zM448 768C271.264 768 128 624.736 128 448S271.264 128 448 128s320 143.264 320 320S624.736 768 448 768z" fill="#272636" p-id="5060"></path></svg> <script src="script.js"></script> </body> </html>