-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
83 lines (76 loc) · 2.77 KB
/
about.html
File metadata and controls
83 lines (76 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="JRS Blog">
<meta name="keywords" content="JRS Coding School, blog, night class, evenings">
<!-- My stylesheets -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" media="screen and (min-width: 668px)" href="css/tablet.css">
<link rel="stylesheet" media="screen and (min-width: 892px)" href="css/desktop.css">
<title>In the Loop</title>
</head>
<body>
<!-- Header -->
<header id="header">
<h1><a href="index.html">In the Loop</a></h1>
<nav class="navbar-container">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a class="current" href="about.html">About</a></li>
<li><a href="admin.html" class="sign-in-link">Login</a></li>
</ul>
</nav>
</header>
<!-- About Me Section -->
<section id="about-image-container">
<div class="about-image">
<img
src="https://images.pexels.com/photos/1307630/pexels-photo-1307630.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"
alt="">
</div>
</section>
<!-- About Text Section -->
<main id="about-container">
<section class="about-text-area">
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Facere illum, exercitationem beatae ullam at nam
aut
cum quia earum sapiente voluptate corrupti architecto incidunt hic tenetur nemo, quas ratione esse.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ex quod sed quis cum delectus saepe!</p>
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Contact Me</h2>
<form class="form-group">
<div>
<label for="name">Name</label>
<input type="text" name="name" id="name">
</div>
<div>
<label for="email">Email</label>
<input type="email" name="email" id="email">
</div>
<div>
<label for="text">Message</label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
</div>
<button type="submit" class="sign-up-btn">Send</button>
</form>
</section>
</main>
<!-- Footer -->
<footer id="footer">
<p>Created by Janita Madramootoo 2019</p>
<ul class="social">
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-facebook"></i></a></li>
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin"></i></a></li>
</ul>
</footer>
<script src="https://kit.fontawesome.com/a48ed8815d.js"></script>
</body>
</html>