-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (79 loc) · 2.76 KB
/
index.html
File metadata and controls
90 lines (79 loc) · 2.76 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Title of the browser tab -->
<title>Tech-Moms</title>
<!-- We are importing our css styles here -->
<link rel="stylesheet" href="style.css">
<!-- We are setting the tab icon here -->
<link rel="icon" href="assets/tech-moms-logo-2021.PNG" type="image/x-icon">
<!-- We are importing icons here -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous" />
<!-- We are importing google fonts here -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap" rel="stylesheet">
</head>
<body>
<!-- Grid -->
<div class="grid-container">
<!-- Header -->
<header class="header-container">
<!-- Navigation -->
<nav>
<img class="logo-position" src="assets/tech-moms-logo.PNG" alt="Tech-Moms" width="130px">
<div class="header-flex">
<a href="#">About</a>
<a href="#">Cohorts</a>
<a href="#">Resources</a>
<a href="#">Contact Us</a>
</div>
</nav>
</header>
<!-- SECTION SECTION -->
<section class="main-container">
<!-- This section is displaying our image that we set in the CSS -->
</section>
<!-- SIDEBAR -->
<aside class="sidebar-container">
<div class="sidebar-accent">Featured Stories</div>
<div class="sidebar-title">Once a Tech-Mom, always a Tech-Mom</div>
<div class="sidebar-tagline">
Tempora in nesciunt qui. Quae et fugiat maxime.
Quod occaecati veritatis eos libero error. Aliquid
ad ut dolor et quis voluptatem adipisci porro.
</div>
<div class="btn-spacing">
<button class="sidebar-btn">
<div class="btn-flex">
<div>Read More</div>
<i class="fas fa-arrow-right"></i>
</div>
</button>
</div>
</aside>
<!-- Footer -->
<footer class="footer-container">
<div class="footer-flex">
<div class="icons-flex">
<a href="https://www.facebook.com/groups/515557616086129">
<i class="fab fa-facebook-square fa-3x square"></i>
</a>
<a href="https://www.linkedin.com/company/tech-moms/">
<i class="fab fa-linkedin fa-3x square"></i>
</a>
<a href="https://www.instagram.com/tech.moms/">
<div class="insta-box">
<i class="fab fa-instagram fa-2x insta"></i>
</div>
</a>
</div>
<div>
Copyright 2022, all rights reserved
</div>
</div>
</footer>
</div>
</body>
</html>