-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.47 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="stylesheets/style.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/fontawesome.min.css" integrity="sha512-xX2rYBFJSj86W54Fyv1de80DWBq7zYLn2z0I9bIhQG+rxIF6XVJUpdGnsNHWRa6AvP89vtFupEPDP8eZAtu9qA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<header>
<ul>
<li><h2 class="logo">Ho<span>me</span></h2></li>
</ul>
</header>
<div class="wrapper">
<aside class="sidebar">
<nav>
<ul>
<li><a href="about.html">About Me</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="about.html">Contact me</a></li>
<li><a href="portfolio.html" class="button">Projects at Ada</a></li>
</ul>
</nav>
</aside>
<div class="main">
<img src="../images/photo.jpg" alt="background">
<h4>Hi, This is </h4>
<h3> <span>Mitra</span> Maghsoudloo </h3>
<p> Personal Portfolio</p>
</div>
</div>
<footer>
<small>© Copyright 2022, Mitra Maghsoudloo</small>
</footer>
</div>
</body>
</html>