-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
76 lines (65 loc) · 2.95 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/portfolio.css">
<!-- social icons-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" />
<!-- fonts -->
<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=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
</head>
<body>
<header class="heading" id="portfolioHead">
<!--Solid Background for Header-->
<!--headUpper flex, make Reverse Column w/ Flex for small screens so links are on top, followed by logo, and then H1 at the bottom-->
<div class="headUpper">
<img src="" alt="logo">
<ul class="navLinks">
<li><a href="index.html">Home</a></li>
<li><a href="">Socials</a></li>
<li><a href="">Store</a></li>
<li><a href="">Pricing</a></li>
</ul>
</div>
<div class="headLower">
<h1>BRAANCHII VISUALS</h1>
<h2 class="roundStyle">
<!-- Calendly link widget begin -->
<link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
<script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript" async></script>
<a href="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/jonathanp-phelps-business'});return false;">Booking</a>
<!-- Calendly link widget end -->
</h2>
</div>
</header>
<div class="flickrwrap">
<iframe src="https://www.flickr.com/photos/199528771@N02/sets/72177720312683743/player"
frameborder="0" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe>
</div>
<section class="socialSection">
<!--Change to Ajax Font-Awesome Library-->
<ul class="socialList">
<li class="faceBookIcon">
<a href="">
<i class="fa-brands fa-facebook-square" style="font-size:48px;color:rgb(0, 119, 255)"></i>
</a>
</li>
<li class="instagramIcon">
<a href="">
<i class="fa-brands fa-instagram" style="font-size:48px;color:rgb(243, 133, 172)"></i>
</a>
</li>
</ul>
</section>
<footer>
<span>logo and dev watermark?</span>
</footer>
</body>
</html>