-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestimonials.html
More file actions
78 lines (76 loc) · 3.39 KB
/
testimonials.html
File metadata and controls
78 lines (76 loc) · 3.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Adam Yednak Testimonials</title>
<meta name="description" content="Adam Yednak Testimonials">
<link rel="stylesheet" href="/SDEV153/styles.css">
</head>
<body>
<header class="universal-header">
<div class="flex-container">
<div>
<a href="index.html">
<h1>Adam <span style="color: cyan;">Yednak</span></h1>
<h2>IT Leader <span style="color: cyan;">&</span> Project Manager</h2>
</a>
</div>
<div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="news.html">News</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
</header>
<section class="testimonials">
<h2>Testimonials</h2>
<form id="testimonialForm">
<h3>Would you like to share your testimonial?</h3>
<fieldset>
<legend>Submit a Testimonial</legend>
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br><br>
<label for="testimonial">Your Testimonial:</label>
<textarea id="testimonial" name="testimonial" rows="6" cols="50"></textarea><br><br>
<input type="submit" value="Submit">
</fieldset>
</form>
<section class="saved-testimonials">
<h3>Here's what people are saying</h3>
<div class="most-recent">
<h4 id="defaultTestimonial">No one has left a testimonial yet</h4>
<h4 id="inputName"> </h4>
<p id="inputTestimonial"></p>
</div>
</section>
</section>
<footer class="universal-footer">
<div>
<p>Adam Yednak © 2025</p>
<p>
<a href="https://jigsaw.w3.org/css-validator/check/referer" target="_blank">
<img style="border:0;width:88px;height:31px"
src="https://jigsaw.w3.org/css-validator/images/vcss-blue"
alt="Valid CSS!">
</a>
</p>
</div>
<button onclick="window.history.back()">Back</button>
<div>
<a href="https://www.linkedin.com/in/adam-yednak" target="_blank">
<img src="/SDEV153/LinkedIn.png" alt="LinkedIn"></a>
<a href="https://github.com/ayednak" target="_blank">
<img src="/SDEV153/GitHub.png" alt="GitHub"></a>
</div>
</footer>
<script src="/SDEV153/scripts.js"></script>
</body>
</html>