-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
67 lines (63 loc) · 3.45 KB
/
Copy pathabout.html
File metadata and controls
67 lines (63 loc) · 3.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link href="styles.css" rel="stylesheet">
<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=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playpen+Sans:wght@100..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<title>Tech Explained 101 Blog</title>
</head>
<body>
<header class="header-class">
<div class="left-side">
<div class="left-side-content">
<a href="index.html">
Tech Explained 101 Blog
</a>
</div>
</div>
<div class="right-side">
<div class="right-side-content">
<div class="right-side-header-content">
<a href="blogs.html">
Blogs
</a>
</div>
<div class="right-side-header-content">
<a href="about.html" style="text-decoration: underline; text-decoration-thickness: 2px;">
About
</a>
</div>
<div class="right-side-header-content">
<a href="contact.html">
Contact
</a>
</div>
</div>
</div>
</header>
<main class="main-div-2">
<div class="centered-div">
<h3 style="cursor: pointer;" onclick="greet();">Hey, I'm Samar!</h3>
<div>
I'm a computer science undergraduate, interested in the world of technology.
I was always interested in researching about and understanding various concepts in this vast field,
and I thought it would be perfect for me to write blogs about these topics.
This would not only help me, but also help anyone else who wants to understand concepts in a simple way,
regardless of your experience in tech. This blog covers many interesting domains like
Artificial Intelligence, Cybersecurity, Development, Data Science and more!
Occasionally you might find certain blogs where I talk about news or other things that catch my interest in tech.
All in all, I hope this blog helps whoever comes by it!
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js" integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V" crossorigin="anonymous"></script>
<script>
function greet() {
alert("Heyy!");
}
</script>
</body>
</html>