-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (74 loc) · 3.62 KB
/
index.html
File metadata and controls
74 lines (74 loc) · 3.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email Page</title>
<link rel="stylesheet" href="email-styles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-3">
<!-- Sidebar -->
<div class="sidebar">
<!-- Header -->
<h3>My Inbox</h3>
<!-- Folders/List -->
<ul class="list-group">
<li class="list-group-item">Inbox</li>
<li class="list-group-item">Sent</li>
<li class="list-group-item">Drafts</li>
</ul>
<!-- Compose and Reply Buttons -->
<button class="btn btn-primary">Compose</button>
<button class="btn btn-secondary">Reply</button>
</div>
</div>
<div class="col-md-9">
<!-- Main Content -->
<div class="main-content">
<!-- Header -->
<h1>Welcome to Your Inbox</h1>
<!-- Search Bar -->
<input type="text" class="form-control" placeholder="Search...">
<!-- Messages/Emails -->
<div class="messages">
<!-- Sample Message -->
<div class="message">
<input type="checkbox" class="form-check-input">
<strong>Sender:</strong> John Doe<br>
<strong>Subject:</strong> Hello<br>
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed et ante nec dolor dapibus sagittis.</span>
</div>
<!-- Sample Message -->
<div class="message">
<input type="checkbox" class="form-check-input">
<strong>Sender:</strong> Jane Smith<br>
<strong>Subject:</strong> Meeting Reminder<br>
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed et ante nec dolor dapibus sagittis.</span>
</div>
<!-- Sample Message -->
<div class="message selected">
<input type="checkbox" class="form-check-input">
<strong>Sender:</strong> Alice Johnson<br>
<strong>Subject:</strong> Important Announcement<br>
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed et ante nec dolor dapibus sagittis.</span>
</div>
</div>
<!-- Displayed Message/Email -->
<div class="displayed-message">
<h2>Selected Message</h2>
<strong>Sender:</strong> Alice Johnson<br>
<strong>Subject:</strong> Important Announcement<br>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed et ante nec dolor dapibus sagittis.</p>
<!-- Text Area -->
<textarea class="form-control" rows="5" placeholder="Type your message here..."></textarea>
</div>
</div>
</div>
</div>
</div>
</body>
</html>