-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
61 lines (47 loc) · 1.51 KB
/
home.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
<!DOCTYPE html>
<html lang = "en-US">
<head>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="tabs">
<ul class="tabs-list">
<li><a href="home.html">Home</a></li>
<li><a href="index.html">About Me</a></li>
</ul>
</div>
<div>
<div class = "section">
<h3 class="highlight-blue">My Projects</h3>
<div class="projects-grid">
<div class="project-image-wrapper">
<a href="project1.html"><img class="project-image" src="images/pubmedlogo.jpg"
width = 200px;
height = 200px;/></a>
</div>
<div class="project-image-wrapper">
<a href="project2.html"><img class="project-image" src="images/pexcel.jpg"/></a>
</div>
</div>
</div>
</div>
<div class = "contactform">
<form action="#">
<h3>CONTACT ME!</h3>
<label for="email">
<h4>Email</h4>
<input type="email" id="email" placeholder="[email protected]" />
</label>
<label for="message">
<h4>Message</h4>
<textarea id="message" placeholder="Questions? Comments? Concerns?"></textarea>
</label>
<div class="submit-button-wrapper">
<input type="submit" value="Send Message" id="submit-button"/>
</div>
</form>
</div>
<script src="script.js"></script>
</body>
</html>