-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (70 loc) · 1.78 KB
/
index.html
File metadata and controls
87 lines (70 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<html>
<head>
<title>startpage</title>
<link rel="stylesheet" href="style.css" />
<!-- Awesome Icons stylesheet -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.css">
</head>
<body>
<div id="main">
<div>
<form action="https://google.com/search" method="GET">
<input autofocus name="q" type="search" placeholder="Search with Google..." autocomplete="off" />
</form>
</div>
<div id="container">
<ul>
<li>
<a href="https://github.com">
<i class="fa-brands fa-github"></i>
</a>
</li>
<li>
<a href="https://freecodecamp.org">
<i class="fa-brands fa-free-code-camp"></i>
</a>
</li>
<li>
<a href="hackerrank.com">
<i class="fa-brands fa-hackerrank"></i>
</a>
</li>
</ul>
<ul>
<li>
<a href="https://reddit.com/">
<i class="fa-brands fa-reddit"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com">
<i class="fa-brands fa-youtube"></i>
</a>
</li>
<li>
<a href="https://discord.com/">
<i class="fa-brands fa-discord"></i>
</a>
</li>
</ul>
<ul>
<li>
<a href="https://codepen.io">
<i class="fa-brands fa-codepen"></i>
</a>
</li>
<li>
<a href="https://hackernews.com">
<i class="fa-brands fa-hacker-news"></i>
</a>
</li>
<li>
<a href="https://stackoverflow.com">
<i class="fa-brands fa-stack-overflow"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>