-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio-item2.html
67 lines (59 loc) · 2.7 KB
/
portfolio-item2.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
<!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>Shaquille Portfolio Website</title>
<link rel="stylesheet" href="style.css">
<!-- Linking fonts that I'm using -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&family=Ubuntu&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/da1c4b5975.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="logo">
<img src="" alt="">
</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 Skills</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>
<!-- Introduction Section -->
<section class="intro" id="home">
<h1 class="section__item section__title--intro">
Survey <strong>Form</strong>
</h1>
<p class="section__subtitle section__subtitle--intro"></p>
<img src="images/stockphoto2.jpg" alt="" class="intro__img">
</section>
<div class="portfolio-item-individual">
<p>This is the first HTML and CSS project I made. It's a general survey form with some styling.
<button ><a href="survey-form/survey-app.html" class="btn__portfolio" target="_blank">Click Here to View</a></button>
</p>
</div>
<!-- Footer -->
<footer class="footer">
<a href="mailto:[email protected]" target="_blank" class="footer__link">[email protected]</a>
<ul class="social-list">
<li class="social-list__item">
<a href="https://github.com/Shaq-C" target="_blank" class="social-list__link"><i class="fa-brands fa-github-square"></i></a>
</li>
<li class="social-list__item">
<a href="https://www.linkedin.com/in/shaquille-cahill-1abba9149/" target="_blank" class="social-list__link"><i class="fa-brands fa-linkedin"></i></a>
</li>
</ul>
</footer>
<script src="index.js"></script>
</body>
</html>