-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (73 loc) · 2.49 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>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Twitter - Alex Kovry</title>
<link rel="stylesheet" href="libs/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans:400,700|Noto+Serif:400,400i&subset=cyrillic-ext" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container">
<div class="row">
<!-- left column -->
<div class="col-md-4">
<div class="card mb-3">
<div class="profile-bg"></div>
<div class="profile-avatar">
<img src="img/avatar.jpg" alt="avatar">
</div>
<div class="card-body">
<h2 class="profile-title">Alexandr Kovryzhenko</h2>
<div class="profile-description">
<p>Front-End Developer</p>
</div>
<ul class="stats">
<li class="stats-item">
<b class="stats-title">Tweets</b>
<b class="stats-count" id="tweetCounter"></b>
</li>
</ul>
</div>
</div>
</div>
<!-- // left column -->
<!-- right column -->
<div class="col-md-8">
<!-- Make a tweet -->
<div class="card mb-3">
<div class="card-body">
<form id="postNewTweet">
<div class="form-group">
<input type="text" class="form-control" id="tweetText" placeholder="What's new?">
</div>
<button type="submit" class="btn btn-primary">Tweet</button>
</form>
</div>
</div>
<!-- // Make a tweet -->
<div class="card tweet-card tweet-card-rounded-top">
<div class="h4 mb-0">User's tweets</div>
</div>
<!-- Tweets List -->
<div id="tweetsList">
</div>
<!-- // Tweets List -->
<!-- Footer -->
<footer class="footer">
<p class="footer-copyright">© Alexandr Kovryzhenko<br>Developed with <i class="fa fa-heart"></i> in 2018</p>
</footer>
<!-- // Footer -->
</div>
<!-- // right column -->
</div>
</div>
<script src="libs/jquery/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
<script src="libs/bootstrap/js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>