-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiteinfo.html
113 lines (90 loc) · 4.59 KB
/
siteinfo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>laitdsgn - Website</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200&icon_names=keyboard_arrow_up" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/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="start2">
<h1 id="title4">Website info</h1>
<p id="aboutme">This website is created with html, css, JS, and bootstrap. It represents me as an intern developer </p>
</div>
<div class="middle">
<h2 id="learnmore">Learn more</h2>
<div class="logos">
<a href="https://www.w3schools.com/html/default.asp"><img src="res/HTML5_logosvg.png" alt="html5"></a>
<a href="https://www.w3schools.com/css/default.asp"><img src="res/CSS_logo.png" alt="css3"></a>
<a href="https://getbootstrap.com/"><img src="res/Bootstrap_logo.png" alt="bootstrap"></a>
<a href="https://www.w3schools.com/js/default.asp"><img src="res/JS_BIGpng.png" alt="java script"></a>
</div>
</div>
<div class="end2">
<h3 id="latest">my latest projects</h3>
<div class="projects">
<div class="project1" id="project">
<img src="res/TheWordIs.png" id="project_image" alt="my guess the word project">
<hr class="hr-solid">
<p class="p-description">The Word Is</p>
<hr class="hr-solid">
<div class="try"><a class="tryit" target="_blank" href="https://laitdsgn.github.io/TheWordIs/">Try it</a></div>
<div class="languages">
<img src="res/js.png" alt="coded in JS">
<img src="res/HTML5_logosvg.png" alt="developed in html5">
<img src="res/CSS_logo.png" alt="developed in CSS3">
</div>
</div>
<div class="project2" id="project">
<img src="res/Chatty.png" id="project_image" alt="my chat app project">
<hr class="hr-solid">
<p class="p-description">Chatty - Social networking app </p>
<hr class="hr-solid">
<div class="languages">
<img src="res/php.png" alt="coded in PHP">
<img src="res/SQL.png" alt="developed in SQL">
<img src="res/HTML5_logosvg.png" alt="develped in HTML5">
<img src="res/CSS_logo.png" alt="developed in CSS3">
</div>
</div>
<div class="project3" id="project">
<img src="res/portfolio.png" id="project_image" alt="my portfolio project">
<hr class="hr-solid">
<p class="p-description">My portfolio</p>
<hr class="hr-solid">
<div class="languages">
<img src="res/CSS_logo.png" alt="developed in CSS">
<img src="res/HTML5_logosvg.png" alt="developed in HTML5">
</div>
</div>
</div>
</div>
</div>
<div id="galleryModal" class="gallery-modal" style="display: none;">
<span id="closeModal" class="close-modal"><img src="res/close.png" alt="close the image"></span>
<img id="galleryImage" class="gallery-image" src="" alt="Project Image">
</div>
</main>
<footer id="footer2">
made by laitdsgn. © 2024
</footer>
<a href="#" class="back-to-top"><span class="material-symbols-outlined">keyboard_arrow_up</span></a>
</div>
<script src="scripts/script.js"></script>
</body>
</html>