-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (67 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<style>
.container {
max-width: 960px;
margin: 0 auto;
padding: 40px;
}
.project {
margin-bottom: 20px;
border: 1px solid #ccc;
padding: 20px;
}
</style>
<title>Document</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="about">
<div class="container">
<img src="./profile.jpg" style="width: 175px;" alt="Profile Photo">
<h1>Hussein Baderddeine</h1>
<p style="font-family: 'Courier New', Courier, monospace; color: brown">Web Developer</p>
<p>I am a junior student at Iowa State University majoring in software engineering
and minoring in cybersecurity.
</p>
</div>
</section>
<section id="projects">
<div class="container">
<h2>Projects</h2>
<div class="project">
<img src="./project1.png" alt="Project 1">
<h3>Project 1</h3>
<p>The first project is related to develop a single Web page using
only two technologies: HTML and CSS. The project consists on
creating a single web page with a menu at the top know as
Navitation Bar. We have to include text describing ourself and
text describing the project. Additionally, we need to include
two images: one image is of ourself and second image is anything
related to the project itself.</p>
</div>
Add more project divs here
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Me</h2>
<p>You can reach me at [email protected]</p>
</div>
</section>
<footer>
<p>© 2023 Hussein Baderddeine</p </footer>
</body>
</html>