-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (49 loc) · 2.49 KB
/
index.html
File metadata and controls
64 lines (49 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>laitdsgn - Home</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=keyboard_arrow_up" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid p-0">
<header >
<nav id="menu_container">
<a href="index.html"><img src="res/my_logo.png" alt="my logotype" id="my_logo"></a>
<div id="menu">
<a href="index.html">Home</a>
<a href="contact.html">Contact</a>
<a href="about.html">About me</a>
<a href="siteinfo.html">Website</a>
</div>
</nav>
</header>
<main>
<div class="start">
<h1 id="title">Hi, im laitdsgn, an intern developer</h1>
<a href="about.html" id="more_button"><button class="btn btn-dark" >More about me</button></a>
<img src="res/my_logo_big.png" alt="bigger version of my logo" id="my_logo_big">
</div>
<div class="middle">
<h2 id="quote">"Have no fear of perfection - you'll never reach it." - Salvador Dali</h2>
</div>
<div class="end">
<h3 class="socials_text">My socials:</h3>
<div class="socials">
<a href="#"><button><img src="res/instagram.png" alt="instagram logo">Instagram</button></a>
<a href="#"><button><img src="res/facebook.png" alt="facebook logo"> Facebook</button></a>
<a href="https://github.com/laitdsgn" target="_blank"><button><img src="res/github.png" alt="github logo"> Github</button></a>
<a href="#"><button><img src="res/discord.png" alt="discord logo">Discord</button></a>
</div>
</div>
</main>
<footer>
made by laitdsgn. © 2024
</footer>
<a href="#" class="back-to-top"><span class="material-symbols-outlined">keyboard_arrow_up</span></a>
</div>
</body>
</html>