-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostSocial.html
106 lines (74 loc) · 2.06 KB
/
postSocial.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<title>Social Media</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1" />
<link href="https://fonts.googleapis.com/css2?family=Russo+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="default.css">
<style type="text/css">
.img-container{
max-width: 600px;
}
img{
width: 100%
}
</style>
</head>
<body>
<div class="nav-wrapper">
<!-- Link around dots-wrapper added after tutorial video -->
<a href="index.html">
<div class="dots-wrapper">
<div id="dot-1" class="browser-dot"></div>
<div id="dot-2" class="browser-dot"></div>
<div id="dot-3" class="browser-dot"></div>
</div>
</a>
<ul id="navigation">
<li><a href="index.html">home</a></li>
</ul>
</div>
<div class="main-container">
<br>
<div class="img-container">
<img src="images/blog.jpg">
</div>
<p>This is a twitter-like social network which allows users to post thoughts and ideas.
<br>
<br>
The sites allows users to register, login and logout. like many social networks users can add a profile picture, edit profile and follow other users
<br>
<br>
The home page is timeline of posts written other user you're following with comments related to that particular post also visible.
<br>
<br>
</p>
<h5>Technologies:</h5>
<ul>
<li>- PHP</li>
<li>- Laravel</li>
<li>- Livewire</li>
<li>- Bootswatch</li>
<li>- Alpine Js</li>
<li>- MySQL</li>
</ul>
<h5></h5>
<div class="img-container">
<img src="images/socialhome.jpg">
</div>
<div class="img-container">
<img src="images/sociallogin.jpg">
</div>
<div class="img-container">
<img src="images/socialregister.jpg">
</div>
<div class="img-container">
<img src="images/socialprofile.jpg">
</div>
<div class="img-container">
<img src="images/socialeditprofile.jpg">
</div>
</div>
</body>
</html>