Favicon serve statici
This commit is contained in:
parent
12e2dc35e6
commit
aec4f7d20d
4 changed files with 5 additions and 3 deletions
2
html.go
2
html.go
|
@ -17,6 +17,8 @@ func ServiHTML() {
|
|||
}
|
||||
http.HandleFunc("/tabella", handlerRoot("template/tabella.html"))
|
||||
http.HandleFunc("/", handlerRoot("template/Interfaccia.html"))
|
||||
fs := http.FileServer(http.Dir("static"))
|
||||
http.Handle("/static/", http.StripPrefix("/static/", fs))
|
||||
http.ListenAndServe(":3000", nil)
|
||||
}
|
||||
|
||||
|
|
BIN
static/favicon.ico
Normal file
BIN
static/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
|
@ -2,6 +2,8 @@
|
|||
<head>
|
||||
<title>Go Bug</title>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/static/favicon.ico" type="image/x-icon">
|
||||
<link href="https://fonts.googleapis.com/css?family=Hammersmith+One" rel="stylesheet">
|
||||
<style type="text/css">
|
||||
body {
|
||||
|
@ -33,8 +35,6 @@
|
|||
main {
|
||||
background-color: #00bbbb;
|
||||
}
|
||||
tr, td {
|
||||
}
|
||||
td {
|
||||
background: white;
|
||||
text-align: center;
|
||||
|
|
Reference in a new issue