-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
45 lines (45 loc) · 1.66 KB
/
portfolio.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
<!DOCTYPE html>
<html>
<head>
<title>Portfolio</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="title-container" style="display: flex;">
<h1>Our Portfolio</h1>
</div>
<div class="content-container" style="margin-top: 60px; display: flex;">
<div class="menu-container" style="display: flex;">
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li>
<a href="services.html">Services</a>
<ul class="submenu">
<li><a href="services.html#service1">Service 1</a></li>
<li><a href="services.html#service2">Service 2</a></li>
<li><a href="services.html#service3">Service 3</a></li>
</ul>
</li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="portfolio-content" style="display: flex;">
<h2>Project 1</h2>
<div class="description" style="display: flex;">
<p>Description of Project 1.</p>
</div>
<h2>Project 2</h2>
<div class="description" style="display: flex;">
<p>Description of Project 2.</p>
</div>
<h2>Project 3</h2>
<div class="description" style="display: flex;">
<p>Description of Project 3.</p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>