generated from imd1005-web-development-winter-2023/assignment-02-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (73 loc) · 3.01 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
78
79
80
81
<!DOCTYPE html>
<!-- Mock photographer's webpage -->
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Emma's Archives</title>
</head>
<body>
<header>
<!-- Camera Logo -->
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcToG9UmZ-cWJKFgynce6J7kKMfqN5M-gB3uYRwQaRfyxkzGcMqL&s" alt="Logo" style="height: 60px;">
<nav>
<ul>
<!-- Navigation -->
<a href="#homepage">Home</a>
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#Meet the Team">Meet the Team</a>
<a href="#contact">Contact Us</a>
</ul>
</nav>
</header>
<main>
<!-- dividing sections -->
<section id="homepage">
<div class="section-inner">
<!-- First background image -->
<img src="https://static.wixstatic.com/media/5e4ebe6edd50441480b429d0a71e7f4f.jpg/v1/fill/w_714,h_460,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/5e4ebe6edd50441480b429d0a71e7f4f.jpg" class="profile-img">
<!-- webpage name -->
<h1>Emma's Archives.</h1>
</div>
</section>
<!-- division -->
<section id="about">
<div class="section-inner">
<h2>Welcome!</h2>
<p>Emma's archives is here to capture your best events with the best photos.</p>
</div>
</section>
<!-- division -->
<section id="Portfolio">
<div class="section-inner">
<h3>With our top of the line camera's, we'll capture those beautiful smiles!</h3>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Commodi vel explicabo, accusantium optio quos amet! Dolor sit amet consectetur adipisicing elit. Commodi vel explicabo, accusantium optio quos amet!</p>
<img src="https://cdn.taggbox.com/v7/taggbox.com/blog/wp-content/uploads/2019/09/IMG_3111-2600x1733-e1671444840244.jpg" class="profile-img">
</div>
</section>
<!-- division -->
<section id="Contact Us">
<div class="section-inner">
<h3>Have questions? Leave us a message!</h3>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Commodi vel explicabo, accusantium optio quos amet! </p>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Please enter your name:" required style="width: 100%;">
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Please enter your email:" required style="width: 100%;">
<label for="message">Message:</label>
<input type="text" id="message" name="message" placeholder="Please enter your message:" required style="width: 100%;">
<!-- submit button -->
<input type="submit" value="Submit" class="submit-button">
</form>
</div>
</section>
</main>
</body>
<footer>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcToG9UmZ-cWJKFgynce6J7kKMfqN5M-gB3uYRwQaRfyxkzGcMqL&s" alt="Logo" style="height: 20px;">
© Copyright Emma's Archives, 2023
</footer>
</html>