-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (51 loc) · 1.53 KB
/
index.html
File metadata and controls
53 lines (51 loc) · 1.53 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
<html lang="en">
<head>
<link
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
rel="stylesheet"
/>
<link href="https://cdn.jsdelivr.net/npm/normalize.css" rel="stylesheet" />
<link href="../base-styles.css" rel="stylesheet" />
<link href="index.css" rel="stylesheet" />
<title>Soft Hover</title>
</head>
<body>
<header>
<h1 class="inspired-title">Soft Hover</h1>
<h2 class="inspired-credit">
Inspiration:
<cite class="inspired-credit__citation"
><a href="https://github.com/">GitHub</a></cite
>
</h2>
</header>
<div class="inspired-container">
<div class="grid">
<div class="content">
<div class="title">Alpha</div>
<div class="subtitle">
Lorem ipsum dolor sit amet, consectetur adipiscing elit
</div>
</div>
<div class="content">
<div class="title">Beta</div>
<div class="subtitle">
Aenean ornare nisi quis velit feugiat semper at in mi
</div>
</div>
<div class="content">
<div class="title">Gamma</div>
<div class="subtitle">
Proin nisl nulla, ultrices commodo efficitur ac, interdum nec dui
</div>
</div>
<div class="content">
<div class="title">Delta</div>
<div class="subtitle">
Nullam sed sapien a ex mattis molestie cras tempor diam lectus
</div>
</div>
</div>
</div>
</body>
</html>