-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (76 loc) · 4.4 KB
/
index.html
File metadata and controls
89 lines (76 loc) · 4.4 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
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Noticify</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<div class="headers">
<div class="head-left">
<h1>Noticify</h1>
</div>
<div class="head-right">
<a href="google.com">About</a>
<a href="google.com">Contact</a>
</div>
</div>
<div class="container">
<div class="con-left">
<div class="notes">
<div class="notes-tags">
<div style="background-color: #c7e3ef; height:30px; border-radius: 5px; display:flex; padding:2px; align-items: center; justify-content: center;">Office</div>
<div style="background-color: #fffacc; height:30px; border-radius: 5px; display:flex; padding:2px; align-items: center; justify-content: center;">Gothenburg</div></div>
<h2>An amazing <br>office space</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,</p>
<div class="arrow"><img src ="arrow.svg" alt="Arrow SVG"/></div>
</div>
<div class="notes">
<div class="notes-tags">
<div style="background-color: #fffacc; height:30px; border-radius: 5px; display:flex; padding:2px; align-items: center; justify-content: center;">Gothenburg</div>
<div style="background-color: #e2efc7; height:30px; border-radius: 5px; display:flex; padding:2px; align-items: center; justify-content: center;">Animals</div>
</div>
<h2>Have you seen <br> my cat?</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod</p>
<div class="arrow"><img src ="arrow.svg" alt="Arrow SVG"/></div>
</div>
<div class="notes">
<div class="notes-tags">
<div style="background-color: #fffacc; height:30px; border-radius: 5px; display:flex; padding:2px; align-items: center; justify-content: center;">Gothenburg</div>
<div style="background-color: #efc7c7; height:30px; border-radius: 5px; display:flex; padding:2px; align-items: center; justify-content: center;">Money</div>
</div>
<h2>Win 5 million <br> dollars!</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, </p>
<div class="arrow"><img src ="arrow.svg" alt="Arrow SVG"/></div>
</div>
<div class="notes">
<div class="notes-tags">
<div style="background-color: #fffacc; height:30px; border-radius: 5px; display:flex; padding:2px; align-items: center; justify-content: center;">Gothenburg</div>
<div style="background-color: #e2efc7; height:30px; border-radius: 5px; display:flex; padding:2px; align-items: center; justify-content: center;">Jobs</div>
</div>
<h2>Developers! <br> Look at this.</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, </p>
<div class="arrow"><img src ="arrow.svg" alt="Arrow SVG"/></div>
</div>
</div>
<div class="con-right">
<div class="sidebar">
<h1 style="font-weight:800;">Welcome to <br> Noticify!</h1>
<p>A digital notice board where you can find everything! Also, I'm very good at writing <br> these descriptive texts. Have a good <br> day. Stay in school etc.</p>
<div class="sidebarButtons">
<div class="firstButton">Learn more
<div class="arrow-black" style="background-color:#a1dbed;"><img src ="arrow-black.svg" alt="Arrow SVG"/></div>
</div>
<div class="secondButton">Learn more
<div class="arrow-black" style="background-color:#d4eda1;"><img src ="arrow-black.svg" alt="Arrow SVG"/></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>