-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro.html
More file actions
79 lines (76 loc) · 2.42 KB
/
intro.html
File metadata and controls
79 lines (76 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kapil Adhikari - Introduction</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background-color: #4CAF50;
color: white;
padding: 1rem;
text-align: center;
}
.container {
max-width: 800px;
margin: 2rem auto;
padding: 1rem;
background: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #333;
}
ul {
list-style-type: square;
padding-left: 20px;
}
.hobby {
color: #4CAF50;
font-weight: bold;
}
footer {
text-align: center;
padding: 1rem 0;
background: #333;
color: white;
margin-top: 2rem;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Kapil Adhikari's Page!</h1>
</header>
<div class="container">
<h2>About Me</h2>
<p>Hello! My name is <strong>Kapil Adhikari</strong>, and I'm from <em>Lancaster, PA</em>. I'm a student at Elizabethtown College, studying Information Systems. This page is a little glimpse into my interests and goals!</p>
<h2>Hobbies</h2>
<p>Here are some of the things I enjoy doing in my free time:</p>
<ul>
<li class="hobby">Playing Soccer</li>
<li class="hobby">Drawing</li>
<li class="hobby">Coding</li>
</ul>
<h2>Goals for Computer Architecture Course</h2>
<p>Through this course, I aim to:</p>
<ul>
<li>Enhance my understanding of computer systems and how they work.</li>
<li>Develop problem-solving skills by working on challenging assignments.</li>
<li>Apply the knowledge to build projects that combine hardware and software.</li>
</ul>
<h2>Fun Fact</h2>
<p>One of my dreams is to combine my passion for coding and creativity to build applications that make life easier and more enjoyable for others.</p>
</div>
<footer>
</footer>
</body>
</html>