html logo svg

Solutions on MaxInterview for html logo svg by the best coders in the world

showing results for - "html logo svg"
Caroline
30 Mar 2016
1<!--Made By Yasin -->
2<!-- Bootstrap is a nice library for css/icons/svg's heres is an example 
3		of a home button-->
4
5<!-- First import the library with html or css (i prefer html)-->
6<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
7
8<!-- Then add the home button,you can use the <i> tag to add icons or the
9    <svg> tag -->
10
11<!-- <i> tag example-->
12<i class="bi bi-house-door"></i>
13
14<!-- or use the svg -->
15<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-house-door" viewBox="0 0 16 16">
16  <path d="M8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4.5a.5.5 0 0 0 .5-.5v-4h2v4a.5.5 0 0 0 .5.5H14a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146zM2.5 14V7.707l5.5-5.5 5.5 5.5V14H10v-4a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v4H2.5z"/>
17</svg>
18<!-- Made By Yasin -->