Skip to content

Commit e2bd44d

Browse files
modified fevicon fetcher
1 parent dfefd77 commit e2bd44d

3 files changed

Lines changed: 17 additions & 4 deletions

File tree

449 KB
Binary file not shown.

Projects/Favicon Fetcher/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
<link rel="shortcut icon" href="images/icon.png" type="image/x-icon">
88
<link rel="stylesheet" href="styles.css">
99
<title>Favicon Fetcher</title>
10+
<link rel="preconnect" href="https://fonts.googleapis.com">
11+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
12+
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
1013
</head>
1114
<body>
1215
<h2>Favicon Fetcher</h2>

Projects/Favicon Fetcher/styles.css

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
margin: 0;
33
padding: 0;
44
box-sizing: border-box;
5-
font-family: "sans";
5+
font-family: "roboto";
66
}
77

88

@@ -15,16 +15,18 @@ body{
1515
display: flex;
1616
align-items: center;
1717
justify-content: center;
18-
background: #b9ecff;
18+
background-image: url('images/background.avif');
1919
}
2020

2121
h2 {
2222
position: absolute;
2323
top: 0;
2424
padding-top: 100px;
25-
color: rgb(9, 6, 6);
26-
font-size: 2rem;
25+
color: rgba(9, 6, 6, 0.567);
26+
font-size: 80px;
2727
text-align: center;
28+
font-family: roboto;
29+
2830
}
2931

3032

@@ -48,4 +50,12 @@ label input{
4850

4951
input[type='button']:hover{
5052
cursor: pointer;
53+
}
54+
55+
#grab,#input{
56+
border-radius: 5px;
57+
border-style: solid;
58+
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.368);
59+
font-family: roboto;
60+
margin-top: 100px;
5161
}

0 commit comments

Comments
 (0)