-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio-item-01.html
98 lines (84 loc) · 4.42 KB
/
portfolio-item-01.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Standard codeset allowing conversion between human language and machine code better than ASCII -->
<meta charset="UTF-8">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<link href="styles.css" rel="stylesheet">
<link href="/assets/css/all.css" rel="stylesheet">
<!-- Normalize CSS to iron out browser differences/make website run smoothly on all devices -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" rel="stylesheets">
<!-- Helps resize webpage based on demensions of device that views it -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upton O. Goode's Portfolio Website</title>
<!-- Google Fonts CSS -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,900|Source+Sans+Pro:300,900&display=swap">
</head>
<body>
<header>
<div>
<p><strong><dev upton></strong></p>
</div>
<button class="nav-toggle" aria-label="toggle navigation">
<span class="hamburger"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="index.html" class="nav__link">Home</a></li>
<li class="nav__item"><a href="index.html#services" class="nav__link">My Services</a></li>
<li class="nav__item"><a href="index.html#about" class="nav__link">About Me</a></li>
<li class="nav__item"><a href="index.html#work" class="nav__link">My Work</a></li>
</ul>
</nav>
</header>
<!-- Project intro -->
<section class="intro">
<h1 class="section__title section__title--intro">
The title <strong>of my project</strong>
</h1>
<p class="section__subtitle section__subtitle--intro">A short subtitle</p>
<img src="img/portfolio-01.jpg" alt="" class="intro__img">
</section>
<div class="protfolio-item-individual">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Pellentesque habitant morbi tristique senectus et netus et malesuada fames.</p>
<img src="img/portfolio-01.jpg" alt="">
<p>Cras pulvinar mattis nunc sed blandit libero volutpat sed.
Lectus quam id leo in vitae turpis massa sed.
In massa tempor nec feugiat nisl pretium fusce id velit.</p>
<p>Consequat semper viverra nam libero justo laoreet.
In nibh mauris cursus mattis molestie.
Eget felis eget nunc lobortis mattis aliquam faucibus.</p>
</div>
<footer class="footer">
<!-- replace with your own email address -->
<a href="mailto:hello@gmail.com" class="footer-link">hello@gmail.com</a>
<ul class="social-list">
<li class="social-list__item">
<a class="social-list__link" href="https://codepen.io">
<i class="fab fa-codepen"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://dribble.com">
<i class="fab fa-dribbble"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://twitter.com">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://github.com">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</footer>
<script src="index.js"></script>
</body>
</html>