-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (116 loc) · 3.93 KB
/
index.html
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CodeIT Lab Website</title>
<link rel="stylesheet" href="/assets/css/style.css" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/img/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/img/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/img/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="assets/img/favicon/site.webmanifest" />
</head>
<body>
<nav></nav>
<main class="container">
<section id="intro">
<div class="flex-grid">
<div class="d-flex-col-center">
<h1 class="intro-title">
CODE.<span class="intro-title-square">IT();</span>LAB
</h1>
</div>
</div>
</section>
<section id="projects">
<div class="flex-grid w-50">
<div class="">
<h3 class="projects-title"><RECENT PROJECTS/></h3>
<hr class="line bg-green w-50" />
<p class="projects-subtitle">
We love what we do, <br />check out some of our latest work.
</p>
</div>
</div>
<div class="flex-grid w-50">
<div class="d-flex-col-center item">
<p>HackItQuiz</p>
</div>
<div class="d-flex-col-center item">
<p>Tisak Plus</p>
</div>
<div class="d-flex-col-center item">
<p>Varaždin Tours</p>
</div>
<div class="d-flex-col-center item">
<p>Track & Fit</p>
</div>
</div>
</section>
<section id="about">
<div class="flex-grid h-100 w-100">
<div class="d-flex-col-center w-50 bg-green">
<h3 class="about-title text-white">
<WHO ARE WE?/>
</h3>
<p class="about-subtitle text-white">
A small group of software development<br />
enthusiasts passionate about technology.
</p>
</div>
<div class="d-flex-col-center w-50 bg-white">
<h3 class="about-title text-green">
<WHAT DO WE DO?/>
</h3>
<p class="about-subtitle text-green">
We strive to deliver cutting-edge solutions<br />
that drive growth and efficiency.
</p>
</div>
</div>
</section>
<section id="contact">
<div class="flex-grid w-100 h-100">
<div class="d-flex-col-center bg-white">
<h3 class="contact-title text-green"><CONTACT US/></h3>
<p class="contact-subtitle text-green">
Want to collaborate on a project?<br />
Send us a message and let's be a dream team!
</p>
</div>
<div class="d-flex-col-center bg-green">
<h3 class="contact-title text-white">
<SEND US A MESSAGE/>
</h3>
<form action="">
<label class="text-white" for="fullname">Full name</label><br />
<input type="text" id="fullName" name="fullName" /><br />
<label class="text-white" for="email">E-mail</label><br />
<input type="email" id="email" name="email" /><br />
<label class="text-white" for="message">Message</label><br />
<textarea type="message" id="message" name="message"></textarea
><br />
<button class="bg-white">Submit</button>
</form>
</div>
</div>
</section>
<footer>© Code IT Lab, 2024.</footer>
</main>
<script src="/assets/js/script.js"></script>
</body>
</html>