-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (77 loc) · 3.6 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mock Template</title>
<link rel="shortcut icon" href="favicon.jpg" type="image/x-icon">
<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=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/style.css">
</head>
<body id="top">
<nav role="navigation" aria-label="navigation">
<ul>
<li><a href="#top">Home</a></li>
<li><a href="#who">Who We Are</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav><!-- end nav -->
<div id="about">
<div class="content">
<h1>Company Title</h1>
<p>Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's
standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a
type specimen book. It has survived not only five centuries,
but also the leap into electronic typesetting, remaining
essentially unchanged. It was popularised in the 1960s with
the release of Letraset sheets containing Lorem Ipsum passages,
and more recently with desktop publishing software like Aldus
PageMaker including versions of Lorem Ipsum.</p>
</div><!-- end div content -->
</div><!-- end div about -->
<div class="staggered-grid" id="who">
<div class="grid-child-one">
<h2>Who We Are</h2>
<p>Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's
standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a
type specimen book.</p>
</div><!-- end div grid child one -->
<div class="grid-child-two">
<h2>Services</h2>
<p>Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's
standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a
type specimen book.</p>
</div><!-- end div grid child two -->
<div class="grid-child-three">
<h2>Affiliations</h2>
<p>Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's
standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a
type specimen book.</p>
</div><!-- end div grid child three -->
</div><!-- end div staggered grid -->
<div id="contact">
<form action="" method="post" class="contact-form">
<label for="name">Name</label>
<input type="text" name="name" id="name" placeholder="Your Name" aria-label="name">
<label for="email">Email Address</label>
<input type="email" name="email" id="email" placeholder="Your Email Address">
<label for="message">Message</label>
<textarea name="message" id="message" rows="10" placeholder="Your Message"></textarea>
<input type="submit" value="Send Message" disabled>
</form><!-- end form -->
</div><!-- end div contact -->
<div id="footer"></div>
</body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="/js/scripts.js"></script>
</html>