Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e7df65d

Browse files
authoredAug 21, 2022
Add files via upload
1 parent 269c389 commit e7df65d

12 files changed

+58
-0
lines changed
 

Diff for: ‎Font/SFUIDisplay-Black.otf

133 KB
Binary file not shown.

Diff for: ‎Font/SFUIDisplay-Bold.ttf

178 KB
Binary file not shown.

Diff for: ‎Font/SFUIDisplay-Heavy.otf

141 KB
Binary file not shown.

Diff for: ‎Font/SFUIDisplay-Light.ttf

175 KB
Binary file not shown.

Diff for: ‎Font/SFUIDisplay-Medium.otf

138 KB
Binary file not shown.

Diff for: ‎Font/SFUIDisplay-Regular.otf

125 KB
Binary file not shown.

Diff for: ‎Font/SFUIDisplay-Semibold.otf

138 KB
Binary file not shown.

Diff for: ‎Font/SFUIDisplay-Thin.otf

131 KB
Binary file not shown.

Diff for: ‎Font/SFUIDisplay-Ultralight.otf

130 KB
Binary file not shown.

Diff for: ‎index.html

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<!-- Required meta tags -->
6+
<meta charset="utf-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
9+
<!-- Bootstrap CSS -->
10+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
11+
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
12+
13+
<link rel="stylesheet" href="style.css">
14+
15+
<title>Hello, world!</title>
16+
</head>
17+
18+
<body>
19+
<div class="container">
20+
21+
<h1>01001000</h1>
22+
<h1>01101001</h1>
23+
<h1>00100001<span style="font-size: 16px; font-weight: 1000; background-color: #222; color: white; border-radius: 50%; padding: 4px;height: 20px;width: 20px;">hi!</span></h1>
24+
25+
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
26+
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
27+
crossorigin="anonymous"></script>
28+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"
29+
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"
30+
crossorigin="anonymous"></script>
31+
<script src="script.js"></script>
32+
</div>
33+
</body>
34+
35+
</html>

Diff for: ‎script.js

Whitespace-only changes.

Diff for: ‎style.css

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
@font-face {
2+
font-family: 'San Francisco';
3+
src: url('Font/SFUIDisplay-Regular.otf');
4+
}
5+
:root {
6+
--background: #fff;
7+
--float-background: #ddd8;
8+
}
9+
body {
10+
background: var(--background);
11+
}
12+
* {
13+
font-family: 'San Francisco';
14+
transition: 0.5s;
15+
}
16+
h1 {
17+
font-size: 150px;
18+
}
19+
@media (max-width: 1000px) {
20+
h1 {
21+
font-size: 70px;
22+
}
23+
}

0 commit comments

Comments
 (0)
Please sign in to comment.